Effacer les filtres
Effacer les filtres

how to plot this

1 vue (au cours des 30 derniers jours)
Solancho
Solancho le 14 Nov 2022
x=0:1:10;
y=x^3-5^x+3;
plot(x,y)

Réponses (3)

Deepak Gupta
Deepak Gupta le 14 Nov 2022
Déplacé(e) : Jan le 14 Nov 2022
Are you trying to evaluate Y at each x?
Use this in that case: y=x.^3-5.^x+3;

Askic V
Askic V le 14 Nov 2022
Déplacé(e) : Jan le 14 Nov 2022
Use element wise operations:
.^
Element-wise power
A.^B is the matrix with elements A(i,j) to the B(i,j) power.

RAGHUNATHRAJU DASHARATHA
RAGHUNATHRAJU DASHARATHA le 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

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by