ClMtxExpr.Expj Method

Overload List

#SignatureDescription
1function Expj(X: TOpenCLMatrix): clMatrix;Computes the e^xj function from the source.
2function Expj(X: TOpenCLValue): clValue;Computes the e^xj function from the source.
3function Expj(X: TOpenCLVector): clVector;Computes the e^xj function from the source.

Overload 1: function Expj(X: TOpenCLMatrix): clMatrix;

Computes the e^xj function from the source.

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Expj

Overload 2: function Expj(X: TOpenCLValue): clValue;

Computes the e^xj function from the source.

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Expj

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

Overload 3: function Expj(X: TOpenCLVector): clVector;

Computes the e^xj function from the source.

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Expj