clValue.Cbrt Method

function Cbrt(const X: TOpenCLValue): TOpenCLValue;

The cube root.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the cube root of X.

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