ClMtxExpr.Cot Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Cot

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Cot

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

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Cot