ClMtxExpr.ArcSin Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clVector.ArcSin

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.ArcSin

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

end;

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.ArcSin