how to plot this
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
x=0:1:10;
y=x^3-5^x+3;
plot(x,y)
0 Commenti
Risposte (3)
Deepak Gupta
il 14 Nov 2022
Spostato: Jan
il 14 Nov 2022
Are you trying to evaluate Y at each x?
Use this in that case: y=x.^3-5.^x+3;
0 Commenti
RAGHUNATHRAJU DASHARATHA
il 14 Nov 2022
As per my understanding you want to plot x and y but you are unable to do that beacuse you are not using element wise operations.
I'll be demonstarting it using your code
x=0:1:10;
y=x.^3-5.^x+3;
plot(x,y)
for more information you can refer the link
0 Commenti
Vedere anche
Categorie
Scopri di più su Digital Filter Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!