How can I fix this error?

Hello, I wrote this code:
figure(3)
dt = 0.001;
T = 60;
t = [0:dt:T] ;
omega0 = 2 * pi / T;
for k = 1:20
ck = cos (k * omega0 * t); % cosine component
a(k) = 2/T * ( sum (ECG_ac.*ck) * dt);
sk = sin (k * omega0 * t); % sine component
b(k) = 2/T * ( sum (ECG_ac.*sk) * dt);
end
magnitude = sqrt(a.^2 + b.^2);
plot(magnitude)
but i have this error:
Error using .*
Matrix dimensions must agree.
Error in Q2ECG (line 40)
a(k) = 2/T * ( sum (ck.*ECG_ac) * dt);
what's wrong?
Thanks for your help

Respuestas (2)

Roger Stafford
Roger Stafford el 12 de Mzo. de 2017

0 votos

Judging by your error message, the two arrays, ck and ECG_ac, have different sizes. That's a no-no.

4 comentarios

Walter Roberson
Walter Roberson el 12 de Mzo. de 2017
We do not know what size ECG_ac is, but ck is the same size as t
Ghazal Hnr
Ghazal Hnr el 13 de Mzo. de 2017
The size of ECG_ac is [1 15000], Is anyway to fix this?
Roger Stafford
Roger Stafford el 13 de Mzo. de 2017
Just change dt:
dt = linspace(0,T,15000);
Ghazal Hnr
Ghazal Hnr el 13 de Mzo. de 2017
I have the same error again!
Walter Roberson
Walter Roberson el 13 de Mzo. de 2017

0 votos

T = 60;
t = linspace(0,T,length(ECG_ac));
dt = t(2)-t(1);
omega0 = 2 * pi / T;
for k = 1:20
ck = cos (k * omega0 * t); % cosine component
a(k) = 2/T * ( sum (ECG_ac.*ck) * dt);
sk = sin (k * omega0 * t); % sine component
b(k) = 2/T * ( sum (ECG_ac.*sk) * dt);
end
magnitude = sqrt(a.^2 + b.^2);
plot(magnitude)

La pregunta está cerrada.

Etiquetas

Preguntada:

el 12 de Mzo. de 2017

Cerrada:

el 20 de Ag. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by