TOpenCLValue.Expj Method

function Expj(Omega: TOpenCLValue): TOpenCLValue;

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

#NameTypeDescription
1OmegaTOpenCLValuesource TOpenCLValue

Returns: TOpenCLValue

Remarks:

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

Examples
var a: clValue;
begin
    b.Copy(2);
    a.Expj(b);   // a = e^(2i)
end;
See Also: TOpenCLValue.Exp