ClMtxExpr.Ln Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Ln

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Ln

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

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Ln