You are here:
Symbol Reference >
MtxExpr Namespace
>
Classes
>
Matrix Record
>
public
>
Log10 Method
>
Matrix.Log10 Method ()
MtxVec VCL
Matrix.Log10 Method ()
Matrix Record
|
Matrix 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:
Matrix
;
begin
a.SetIt(2,2,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
Matrix Record
,
Matrix 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!