Use the exponential function exp(y) to compute e^y. For example:  x = 0.2; Result = (x^2)*exp(4) Result = 2.1839 Answer from Star Strider on mathworks.com
🌐
MathWorks
mathworks.com › matlab › mathematics › elementary math › exponents and logarithms
exp - Exponential - MATLAB
November 24, 2021 - This MATLAB function returns the exponential ex for each element in array X.
Discussions

what is meant by 3e4 in matlab?
I am reading a program M = 16; k = log2(M); n = 3e4; nsamp = 1; kindly tell me the meaning of "3e4" as soon as possible.... More on mathworks.com
🌐 mathworks.com
3
1
September 19, 2013
Why Euler's number e = 2.71828... is not a built-in constant in MATLAB?
3. e in MATLAB stands for 10, so using the code you gave will conflict with the scientific notation e. 4. exp(1) will evaluate the exponential function at x = 1. Why should we evaluate a function at a number x = 1 when we already know its value (Euler's number)? More on researchgate.net
🌐 researchgate.net
11
0
June 19, 2020
10e5 == 10^5 is not true in MATLAB
If you type in 10e5 == 10^5 ans = logical 0 so 10e5 does NOT mean 10 to the power of 5 but it means 10 to the power of 6. 10e5 == 10^6 ans = logi... More on mathworks.com
🌐 mathworks.com
2
1
November 4, 2017
notation - the meaning of "e" in matlab output - Stack Overflow
In matlab, especially when testing a neural network, we see a special type of output. for example, 3.332e-23 or 5.e-235. What is the meaning of "e" in the context of the output? More on stackoverflow.com
🌐 stackoverflow.com
Find elsewhere
🌐
MathWorks
mathworks.com › matlabcentral › answers › 299091-how-do-i-convert-scientific-notation-into-number-in-matlab
How do i convert scientific notation into number in matlab - MATLAB Answers - MATLAB Central
August 10, 2016 - Although the variable a is indeed stored as a number, when trying to index with it for example MATLAB throws "Warning: Integer operands are required for colon operator when used as index" because it views the scientific notation as a decimal. I believe what Jasmeet was asking is how to make MATLAB understand a value such as 1.0400e+4 as the whole number 10400 that it is, instead of as a non-whole number.
🌐
UNSW Sites
maths.unsw.edu.au › sites › default › files › MatlabSelfPaced › lesson1 › MatlabLesson1_Complex.html
MATLAB Lesson 1 - Complex numbers
We're passionate about maths and its capacity to change the world for the better. Each year, we share this passion at this event designed for young women in high school (predominantly years 10-11) with demonstrative capacity, talent, and interest in mathematics.
🌐
MathWorks
mathworks.com › matlabcentral › answers › 646873-euler-s-number-syntax-in-matlab
Euler's number syntax in matlab - MATLAB Answers - MATLAB Central
November 13, 2020 - How do I type euler's number in matlab for the follwing function with t being an input of vectors and xN should be the same size vector of t? xN=C1*e^(S1*t)+C2*e^(S2*t) e is meant to be Euler's n...
🌐
Wikipedia
en.wikipedia.org › wiki › MATLAB
MATLAB - Wikipedia
19 hours ago - MATLAB is a weakly typed programming language because types are implicitly converted. It is an inferred typed language because variables can be assigned without declaring their type, except if they are to be treated as symbolic objects, and that their type can change. Values can come from constants, from computation involving values of other variables, or from the output of a function. ... >> x = 17 x = 17 >> x = 'hat' x = hat >> x = [3*4, pi/2] x = 12.0000 1.5708 >> y = 3*sin(x) y = -1.6097 3.0000
🌐
Quora
quora.com › How-can-I-implement-log-ln-and-e-in-MATLAB
How to implement log, ln, and e in MATLAB - Quora
Answer (1 of 2): It is so easy to write the ‘e’, ‘log’, and ‘ln’ in Matlab. We have to know the built-in function defined for the ‘e’, ‘log’, and ‘ln’ variables. The implementation function is, ‘e’ in Matlab is ‘exp()’ ‘log’ in Matlab is ‘log()’ And for ‘ln’ in Matlab is ‘log()’ (In Matlab , l...