Effacer les filtres
Effacer les filtres

plot (t,y) ,dimension failure

1 vue (au cours des 30 derniers jours)
Mlee
Mlee le 12 Avr 2021
Modifié(e) : the cyclist le 12 Avr 2021
clear all; close all; clc;
delt=1/100;
t=0:delt:10;
y=exp(-t/2)*cos(t)
plot(t,y)
when I operate this code matlab program repeat me demension failure
y=exp(-t/2)*cos(t)

Réponse acceptée

the cyclist
the cyclist le 12 Avr 2021
Modifié(e) : the cyclist le 12 Avr 2021
The answer is right there in the error message. Use elementwise multiplication instead of matrix multiplication.
clear all; close all; clc;
delt=1/100;
t=0:delt:10;
y=exp(-t/2).*cos(t);
plot(t,y)

Plus de réponses (0)

Catégories

En savoir plus sur Entering Commands dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by