ClMtxExpr.Csc Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Csc

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Csc

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

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Csc