ClMtxExpr.Log10 Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clVector.Log10

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Log10

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

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Log10