You are here:
Symbol Reference >
MtxExpr Namespace
>
Classes
>
Vector Record
>
public
>
Exp10 Method
>
Vector.Exp10 Method ()
MtxVec VCL
Example
Vector.Exp10 Method ()
var
a,b:
Vector
;
begin
a.SetIt(False,[1,2,3,4]);
// a = [1,2,3,4]
a.Exp10;
// a = [10,100,1000,10000]
a := Exp10(a); b.Exp10(a);
//same as
b := Exp10(a);
end
;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.