ClMtxExpr.ArcCos Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.ArcCos

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.ArcCos

Examples
var a,b: clValue;
begin
    b.Copy(4);
    a.ArcCos(b);
end;

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.ArcCos