clValue.Sin Method

function Sin(const X: TOpenCLValue): TOpenCLValue;

Sine function.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the sine of X.

Examples
var a,b: clValue;
begin
    b.Copy(4);
    a.Sin(b);
end;
See Also: clValue.ArcSin, clValue.SinCos