TOpenCLValue.InvCbrt Method

function InvCbrt(const X: TOpenCLValue): TOpenCLValue;

The inverse of cube root 1/(v)^1/3.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the inverse cube root (1/(element)^(1/3)) of X.

Examples
var a,b: clValue;
begin
    b.Copy(2.3);
    a.InvCbrt(b);  // a = 2.3^(1/3)
end;
See Also: TOpenCLValue.Cbrt