ClMtxExpr.Sec Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Sec

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Sec

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

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Sec