You are here:
Symbol Reference >
Dew Namespace
>
Dew.Math Namespace
>
Classes
>
TMtxVec Class
>
TMtxVec Methods
>
Exp Method
>
TMtxVec.Exp Method ()
Dew Math for .NET
TMtxVec.Exp Method ()
TMtxVec Class
TMtxVec Members
Dew.Math Namespace
Exp Method
Example
See Also
Collapse All
Exponent (e^).
Syntax
C#
Visual Basic
public
TMtxVec
Exp
();
Public
Function
Exp
()
As
TMtxVec
Remarks
Calculate the exponent (e^) for all calling object elements in-place.
See Also
Ln
Example
using
Dew.Math
;
using
Dew.Math.Units
;
namespace
Dew.Examples() {
void
Example() {
TVec
a; MtxVec.CreateIt(
out
a);
try
{ a.SetIt(
false
,
new
double
[] {1,System.Math.E}); a.Exp();
// a = [0.0,1.00000]
}
finally
{ MtxVec.FreeIt(
ref
a); } } }
Group
Exp Method
Links
TMtxVec Class
,
TMtxVec Members
,
Dew.Math Namespace
,
Exp Method
,
Example
,
See Also
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
Contents
|
Index
|
Home
What do you think about this topic?
Send feedback!