Why doesn't this matlab code work?!
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Aryo Aryanapour
le 19 Avr 2021
Commenté : Aryo Aryanapour
le 20 Avr 2021
>> x = -5:1:5;
>> y = exp(x)*(x.^3-5*x.^2+5*x+1);
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix
matches the number of rows in the second matrix. To perform elementwise multiplication, use '.*'.
Related documentation
>> plot(x,y)
Unrecognized function or variable 'y'.
thank you
0 commentaires
Réponse acceptée
the cyclist
le 20 Avr 2021
You missed a spot where you needed an element-wise operation, multiplying the exp(x) by the other term:
x = -5:1:5;
y = exp(x).*(x.^3-5*x.^2+5*x+1);
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!