I can't figure out why I am getting the error message Matrix dimensions must agree.

1 visualización (últimos 30 días)
clc;
k=48000;
m=1200;
c=[3000:1000:10000];
w=sqrt(k/m);
E=c/(2*sqrt(m*k));
a=sqrt(1-E.^2)*w;
b=E/(sqrt(1-E.^2));
f0=9000/100;
d=E*w;
t=[0:0.05:10];
x=f0-f0.*exp(-d.*t).*cos(a.*t)-(f0*b).*exp(-d.*t).*sin(a.*t);
plot(t,x);
ylabel('Frequency of Suspension');
xlabel('Time (s)');
title('Frequency of Car Suspension')

Respuesta aceptada

Star Strider
Star Strider el 25 de Sept. de 2018
The problem is that ‘c’ and everything you calculate from it are (1x8) vectors and ‘t’ is a (201x1) vector. Your ‘x’ assignment works if you transpose ‘a’ and ‘d’ to column vectors:
a=sqrt(1-E'.^2)*w;
d=E'*w;
It then plots a family of curves.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by