ClMtxExpr.ArcCot Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.ArcCot

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.ArcCot

Examples
var a,b: clValue;
begin
    b.Copy(0.5);
    a.ArcCot(b);
end;

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.ArcCot