How do you put the constant e on matlab
943 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Enrique Man
le 30 Mar 2018
Commenté : Walter Roberson
le 4 Déc 2024
I'm trying to write an equation with e, but I assume it would just take it as an undeclared variable.
0 commentaires
Réponse acceptée
Star Strider
le 30 Mar 2018
3 commentaires
Steven Lord
le 3 Déc 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
le 4 Déc 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
Plus de réponses (2)
Voir également
Catégories
En savoir plus sur Entering Commands dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!