Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

what is "Error using ==> mtimes Inner matrix dimensions must agree."

1 vue (au cours des 30 derniers jours)
Mustafa Ahmed
Mustafa Ahmed le 17 Nov 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
The question says write a matlab code to draw praph of F(t) in the interval 0 <= t <= 4, increase by 0.05

Réponses (2)

Ameer Hamza
Ameer Hamza le 17 Nov 2020
Since 't' is a vector, use element-wise operators: https://www.mathworks.com/help/matlab/matlab_prog/array-vs-matrix-operations.html. Replace / with ./ and * with .*
  1 commentaire
Mustafa Ahmed
Mustafa Ahmed le 17 Nov 2020
Modifié(e) : Mustafa Ahmed le 17 Nov 2020
thank you

Andrei Bobrov
Andrei Bobrov le 17 Nov 2020
t = 0:0.05:4;
y = t.^2./ (t+1) + 3*exp(-4*t).*cos(5*t) - 2*exp(-3*t)./sin(2*t);

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by