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

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

Syntax
C#
Visual Basic
public TOpenCLMtxVec 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() { TOpenCLVector a; clMtxVec.CreateIt(out a); try { a.CopyFromArray( new double[] {1,2,3,4}); a.Expj(); } finally { clMtxVec.FreeIt(ref a); } } }
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!