show an equation without calculus
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi all, I'm new in this forum and I'm new in matlab. I'm working on an assignment and I have a doubt. I have to represent the column vector u=[exp(-1); exp(0); exp(1); exp(2); exp(3)]. I'm asking if there is a possibility to show the e^x without doing calculations (for example if I can show e^0 instead of showing the result '1'). Thanks for the answer. I hope that the question is not too stupid and that it has quite a solution
0 comentarios
Respuestas (1)
Image Analyst
el 1 de Mzo. de 2015
I don't know of any way to raise e to a power without doing a calculation for the exp() function or some other way (e.g. algorithm, series, or whatever). You can do it all in a few lines without hard coding the numbers though:
x = -1 : 100; % Whatever you want
u = exp(x);
0 comentarios
Ver también
Categorías
Más información sobre Calculus 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!