ploting a signal which has different frequency

3 Ansichten (letzte 30 Tage)
Faranak
Faranak am 3 Dez. 2013
Kommentiert: sixwwwwww am 3 Dez. 2013
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

Antworten (3)

sixwwwwww
sixwwwwww am 3 Dez. 2013
Bearbeitet: sixwwwwww am 3 Dez. 2013
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 am 3 Dez. 2013
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 am 3 Dez. 2013
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.
  1 Kommentar
sixwwwwww
sixwwwwww am 3 Dez. 2013
can you show sample output what you actually need as output?

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by