ploting a signal which has different frequency

3 次查看(过去 30 天)
Hi,
I want to plot a signal which has different frequency,This is the exactly what I want:
I want to plot the heart beat of a person which his heart beat,after a couple of minutes exercising, start from 10 and decrease to 1 , What should I use for the code? Thanks

回答(3 个)

sixwwwwww
sixwwwwww 2013-12-3
编辑:sixwwwwww 2013-12-3
Dear Faranak, do you need something like this:
x = 0:0.01:2 * pi;
count = 0;
for i = 5:-1:1
y = sin(i * x);
plot(x + count * 2 * pi, y), hold on
count = count + 1;
end

Image Analyst
Image Analyst 2013-12-3
I assume you already have the signal somehow, such as from an ecg machine. So then why can't you just plot it with the plot() function? If you don't have the signal yet, then let us know how you're planning on getting it, such as you'd like to synthesize a fake one, or whatever.

Faranak
Faranak 2013-12-3
Thank you for your answers. I want my signal to be a train of impulse signal,not a sin one.I do not have the signal,I just have the frequency.

类别

Help CenterFile Exchange 中查找有关 Multirate Signal Processing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by