function Sin(const X: TOpenCLValue): TOpenCLValue;
Sine function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
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