How do you put the constant e on matlab
347 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Enrique Man
il 30 Mar 2018
Commentato: Walter Roberson
il 4 Dic 2024
I'm trying to write an equation with e, but I assume it would just take it as an undeclared variable.
0 Commenti
Risposta accettata
Star Strider
il 30 Mar 2018
3 Commenti
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)
y1 = e^2
y2 = exp(2)
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);
y2 = exp(20); fprintf('%.999g\n', y2);
y1 - y2
Più risposte (2)
Vedere anche
Categorie
Scopri di più su Entering Commands in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!