e
Symbol for the base of the natural logarithm.
Syntax
R = e returns a scalar.
R = e(n) returns an n by n matrix.
R = e(m, n)(m, n) returns an m by n matrix.
R = e(d1, d2, ... dN) returns an N dimensional matrix.
R = e([d1, d2, ... dN]) returns an N dimensional matrix.
Inputs
- m, n, d1, d2, ..., dN
 - Dimensions of the matrix to be returned.
 
Outputs
- R
 - The returned matrix of e values.
 
Examples
R = eR = 2.71828183R = e(3)R = [Matrix] 3 x 3
2.71828  2.71828  2.71828
2.71828  2.71828  2.71828
2.71828  2.71828  2.71828R = e([2,3])a = [Matrix] 2 x 3
2.71828  2.71828  2.71828
2.71828  2.71828  2.71828