You are here:
Symbol Reference >
Dew Namespace
>
Dew.Math Namespace
>
Classes
>
clVector Structure
>
clVector Methods
>
LogN Method
>
clVector.LogN Method (double)
Dew Math for .NET
clVector.LogN Method (double)
clVector Structure
clVector Members
Dew.Math Namespace
LogN Method
Example
See Also
Collapse All
Log base N.
Syntax
C#
Visual Basic
public
TOpenCLMtxVec
LogN
(
double
N
);
Public
Function
LogN
(
N
)
As
TOpenCLMtxVec
Returns
Log base N for all calling object elements in-place.
See Also
Power
Example
var a:
clVector
; begin a.CopyFromArray(TSingleArray.Create(1,2,3,4));
// a = [1,2,3,4]
a.LogN(10.0);
// log base 10, the slow way a = [Log10(1), Log10(2),...]
end;
Group
LogN Method
Links
clVector Structure
,
clVector Members
,
Dew.Math Namespace
,
LogN Method
,
Example
,
See Also
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
Contents
|
Index
|
Home
What do you think about this topic?
Send feedback!