You are here:
Symbol Reference >
Dew Namespace
>
Dew.Math Namespace
>
Classes
>
Vector Structure
>
Vector Methods
>
LogN Method
>
Vector.LogN Method (double)
Dew Math for .NET
Vector.LogN Method (double)
Vector Structure
Vector Members
Dew.Math Namespace
LogN Method
Example
See Also
Collapse All
Log base N.
Syntax
C#
Visual Basic
public
TMtxVec
LogN
(
double
N
);
Public
Function
LogN
(
N
)
As
TMtxVec
Remarks
Calculate the log base N for all calling object elements in-place.
See Also
Power
Example
var a:
Vector
; begin a.SetIt(False,[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
Vector Structure
,
Vector 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!