You are here:
Symbol Reference >
MtxExpr Namespace
>
Classes
>
Vector Record
>
public
>
Log10 Method
>
Vector.Log10 Method ()
MtxVec VCL
Vector.Log10 Method ()
Vector Record
|
Vector Members
|
MtxExpr Namespace
|
Log10 Method
|
Example
|
See Also
Collapse All
Log base 10.
Pascal
function
Log10
:
TMtxVec
;
overload
;
Description
Calculate the log base 10 for all calling object elements in-place.
See Also
Exp10
Example
var
a,b:
Vector
;
begin
a.SetIt(False,[10,100,1000,10000]);
// a = [10,100,1000,10000]
a.Log10;
// a = [1,2,3,4], same as:
a := Log10(a); b.Log10(a);
//same as
b := Log10(a);
end
;
Examples on GitHub
Group
Log10 Method
Links
Vector Record
,
Vector Members
,
MtxExpr Namespace
,
Log10 Method
,
Example
,
See Also
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic?
Send feedback!