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
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
How do i convert scientific notation into number in matlab
Although the variable a is indeed ... 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 ... More on mathworks.com
🌐 mathworks.com
3
0
August 10, 2016
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
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
🌐
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.
Find elsewhere
🌐
MathWorks
mathworks.com › matlabcentral › answers › 512494-format-number-exponential-notation
Format Number (exponential notation) - MATLAB Answers - MATLAB Central
March 23, 2020 - I have a code and a result is the variabile: T= 5.6789e-05 I want use a function for change the exponential notation from e-05 to e-6 and print the value in a graph. Correct value T= 56.789...
🌐
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...
🌐
EDUCBA
educba.com › home › data science › data science tutorials › matlab tutorial › matlab exponential
MATLAB Exponential | 7 Types of Exponential Function in MATLAB
June 4, 2025 - So, in this article, we learned how to use the exponential function in MATLAB. We can use exp(x) syntax in MATLAB to calculate the exponential of any function which is passed as an argument.
Address   Unit no. 202, Jay Antariksh Bldg, Makwana Road, Marol, Andheri (East),, 400059, Mumbai
🌐
MathWorks
de.mathworks.com › matlab › mathematics › elementary math › exponents and logarithms
Exponentialfunktion - MATLAB exp
June 17, 2020 - This MATLAB function returns the exponential ex for each element in array X.
🌐
Wikipedia
en.wikipedia.org › wiki › MATLAB
MATLAB - Wikipedia
2 weeks 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