ClMtxExpr.Sinh Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Sinh

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Sinh

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

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Sinh