clValue.LogN Method

function LogN(N: Double; X: TOpenCLValue): TOpenCLValue;

Log base N.

#NameTypeDescription
1NDoublescalar
2XTOpenCLValuesource TOpenCLValue

Returns: TOpenCLValue - Computes Log with base N.

Examples
var a,b: clValue;
begin
    b.Copy(2.3);
    a.LogN(4, b);  // // a = LogN(4, 2.3)
end;
See Also: clValue.Power