clValue.Inv Method

function Inv(const X: TOpenCLValue): TOpenCLValue;

Inverse (1/x).

#NameTypeDescription
1XTOpenCLValue

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