ClMtxExpr.Cbrt Method

Overload List

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

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

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

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Cbrt

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

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

#NameTypeDescription
1XTOpenCLValuesource TOpenCLValue

Returns: clValue

Remarks:

Internally calls clValue.Cbrt

Examples
var a,b: clValue;
begin
    b.Copy(8);
    a.Cbrt(b);
end;

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

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

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clVector.Cbrt