Azzera filtri
Azzera filtri

How can I connect the points in the merged stem graph

3 visualizzazioni (ultimi 30 giorni)
Below is part of my code.
Do_FFT is a self-defined function for doing FFT.
[P1,f_axis] = Do_FFT(file,fs,0);
stem(f_axis,P1,'g');
hold on;
[Pf,f_axisf] = Do_FFT(file,fs,1,0.5);
stem(f_axisf,Pf);
[Pf,f_axisf] = Do_FFT(file,fs,1,0.5);
stem(f_axisf,Pf,'r');
Just ignore title and legends of the image.
I'd like to know how to draw a line to connect all of the points. Thanks a lot.

Risposte (1)

KSSV
KSSV il 5 Giu 2018
Use hold on and plot data.
figure
X = linspace(0,2*pi,50)';
Y = cos(X) ;
stem(X,Y)
hold on
plot(X,Y,'r')
  1 Commento
Wei-Min Chen
Wei-Min Chen il 5 Giu 2018
Hi,
It seems like this approach only can connect the line from individual data. Now I have three stem graphics, their colors are 'r','g','b' respectively.
Can I connect them? Or I should plot them by using only one stem cmd, then plot(X,Y,'r') like you say?

Accedi per commentare.

Prodotti


Release

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by