TOpenCLValue Expj(TOpenCLValue Omega)
A complex exponential e^(j*Omega)).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Omega | TOpenCLValue | source TOpenCLValue |
Returns: TOpenCLValue
Remarks:
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 Dew.Math.clValue.Exp method instead.
Examples
clValue a;
b.Copy(2);
a.Expj(b); // a = e^(2i)
See Also: clValue.Exp