how do i create an array of e^x
Mostra commenti meno recenti
x=1:25
2 Commenti
Matt J
il 31 Ott 2018
You have been asking lots of questions about things you really ought to know how to do if you have been through the Getting Started documentation. The forum is not meant to be a replacement for reading the manual.
Steven Lord
il 31 Ott 2018
Alternately, if you prefer to learn by watching videos and through hands-on experimentation rather than reading the documentation, consider taking the MATLAB Onramp course available on the MathWorks website.
Risposte (2)
Fangjun Jiang
il 31 Ott 2018
0 voti
try exp(x)
x=1:25
y = exp(x) ;
plot(x,y)
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!