Why doesn't this matlab code work?!
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Aryo Aryanapour
il 19 Apr 2021
Commentato: Aryo Aryanapour
il 20 Apr 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 Commenti
Risposta accettata
the cyclist
il 20 Apr 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);
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!