function Expj(Omega: TOpenCLValue): TOpenCLValue;
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 clValue.Exp method instead.
Examples
var a: clValue;
begin
b.Copy(2);
a.Expj(b); // a = e^(2i)
end;
See Also: clValue.Exp