show an equation without calculus
2 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Image Analyst
on 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);
0 Comments
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!