You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > TMtxVec Class > TMtxVec Methods > Expj Method > TMtxVec.Expj Method ()
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
TMtxVec.Expj Method ()

A complex exponential e^(j*Omega)).

Syntax
C#
Visual Basic
public TMtxVec Expj();

Calculate the calling object complex exponential in-place. An exception is raised if calling object is complex. If object is complex, you should use the Exp method instead.

using Dew.Math; using Dew.Math.Units; namespace Dew.Examples() { void Example() { TVec a; MtxVec.CreateIt(out a); try { a.SetIt(false, new double[] {1,2,3,4}); a.Expj(); } finally { MtxVec.FreeIt(ref a); } } }
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!