TOpenCLValue.Cos Method

function Cos(const X: TOpenCLValue): TOpenCLValue;

Cosne function.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the cosine of X.

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