function Inv(const X: TOpenCLValue): TOpenCLValue;
Inverse (1/x).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculates the inverse of X.
Examples
var a,b: clValue;
begin
b.Copy(8);
a.Inv(b); // a = 1/8
end;
See Also: clValue.Divide