ClMtxExpr.Exp2 Method

Overload List

#SignatureDescription
1function Exp2(X: TOpenCLMatrix): clMatrix;Result = the Exp2 function from the source and return the result
2function Exp2(X: TOpenCLValue): clValue;Result = the Exp2 function from the source and return the result
3function Exp2(X: TOpenCLVector): clVector;Result = the Exp2 function from the source and return the result

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

Compute the Exp2 function from the source and return the result.

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Exp2

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

Compute the Exp2 function from the source and return the result.

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Exp2

Examples
var a,b: clValue;
begin
    b.Copy(8);
    a.Exp2(b);
end;

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

Compute the Exp2 function from the source and return the result.

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Exp2