You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Matrix Structure > Matrix Methods > Exp Method > Matrix.Exp Method ()
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Matrix.Exp Method ()

Exponent (e^).

Syntax
C#
Visual Basic
public TMtxVec Exp();

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;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!