How do you put the constant e on matlab
1.017 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Enrique Man
el 30 de Mzo. de 2018
Comentada: Walter Roberson
el 4 de Dic. de 2024
I'm trying to write an equation with e, but I assume it would just take it as an undeclared variable.
0 comentarios
Respuesta aceptada
Star Strider
el 30 de Mzo. de 2018
3 comentarios
Steven Lord
el 3 de Dic. de 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
el 4 de Dic. de 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
Más respuestas (2)
Ver también
Categorías
Más información sobre Entering Commands en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!