please how can I Draw the graph of y = 2ex, -5 <= x <= 5
Mostra commenti meno recenti
x = linspace(-5<=x<=5); y = 2*e^x plot(x,y)
Risposte (1)
x=linspace(-5,5)
y=2.*exp(x)
plot(y,x)
2 Commenti
Theman JIrnadu
il 12 Ago 2017
Jan
il 12 Ago 2017
@Theman JIrnadu: If the answer has solved your problem, please accept it.
Categorie
Scopri di più su MATLAB 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!