How do you put the constant e on matlab

644 views (last 30 days)
I'm trying to write an equation with e, but I assume it would just take it as an undeclared variable.

Accepted Answer

Star Strider
Star Strider on 30 Mar 2018
You may want the exponential function exp (link), the base of the natural logarithms.
  3 Comments
Steven Lord
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)
e =
2.71828182845905
y1 = e^2
y1 =
7.38905609893065
y2 = exp(2)
y2 =
7.38905609893065
Walter Roberson
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);
485165195.409789741039276123046875
y2 = exp(20); fprintf('%.999g\n', y2);
485165195.4097902774810791015625
y1 - y2
ans =
-5.36441802978516e-07

Sign in to comment.

More Answers (2)

Steven Lord
Steven Lord on 30 Mar 2018
Use the exp function.

Ephendy Sithole
Ephendy Sithole on 29 May 2021
exp

Categories

Find more on Entering Commands in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!