How do you put the constant e on matlab

347 visualizzazioni (ultimi 30 giorni)
I'm trying to write an equation with e, but I assume it would just take it as an undeclared variable.

Risposta accettata

Star Strider
Star Strider il 30 Mar 2018
You may want the exponential function exp (link), the base of the natural logarithms.
  3 Commenti
Steven Lord
Steven Lord il 3 Dic 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 il 4 Dic 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

Accedi per commentare.

Più risposte (2)

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

Ephendy Sithole
Ephendy Sithole il 29 Mag 2021
exp

Categorie

Scopri di più su Entering Commands in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by