You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Matrix Structure > Matrix Methods > Exp10 Method > Matrix.Exp10 Method ()
Dew Math for .NET
ContentsIndexHome
Example
var a,b: Matrix; begin a.SetIt(2,2,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-2024 by Dew Research. All rights reserved.