How do you put the constant e on matlab
644 views (last 30 days)
Show older comments
Enrique Man
on 30 Mar 2018
Commented: Walter Roberson
on 4 Dec 2024
I'm trying to write an equation with e, but I assume it would just take it as an undeclared variable.
0 Comments
Accepted Answer
Star Strider
on 30 Mar 2018
3 Comments
Steven Lord
on 3 Dec 2024
Yes, though if you're planning to use it in expressions of the form e^t, instead of computing e separately then raising it to the power t I recommend calling exp with t as an input.
format longg
e = exp(1)
y1 = e^2
y2 = exp(2)
Walter Roberson
on 4 Dec 2024
As an example of the difference between exp(1)^n and exp(n) :
format long g
e = exp(1);
y1 = e^20; fprintf('%.999g\n', y1);
y2 = exp(20); fprintf('%.999g\n', y2);
y1 - y2
More Answers (2)
See Also
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!