function Cbrt(const X: TOpenCLValue): TOpenCLValue;
The cube root.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
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