You are here: Symbol Reference > MtxExpr Namespace > Classes > Matrix Record > public > Exp Method > Matrix.Exp Method ()
MtxVec VCL
ContentsIndex
PreviousUpNext
Matrix.Exp Method ()

Exponent (e^).

Pascal
function Exp: TMtxVec; overload;

Calculate the exponent (e^) for all calling object elements in-place.

var a,b: Matrix; begin a.SetIt(2,2,False,[1,2,4,8]); a.Exp; //same as: a := Exp(a); b := Exp(a); //same as: b.Exp(a); end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!