Effacer les filtres
Effacer les filtres

show an equation without calculus

1 vue (au cours des 30 derniers jours)
AnnaMaria Accardo
AnnaMaria Accardo le 25 Fév 2015
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

Réponses (1)

Image Analyst
Image Analyst le 1 Mar 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);

Community Treasure Hunt

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

Start Hunting!

Translated by