How can i draw a line along the plots?

I need to plot it as a line, but here it plots as digital data with no connection from previous to current data. This the data that i'm receiving from arduino from 4 sensors thru serial port
plot(sample_number,str2double(a_component),'--gs',... 'LineWidth',2,... 'MarkerSize',10,... 'MarkerEdgeColor','y',... 'MarkerFaceColor',[0.5,0.5,0.5]);
plot(sample_number,str2double(b_component),'--gs',... 'LineWidth',2,... 'MarkerSize',10,... 'MarkerEdgeColor','m',... 'MarkerFaceColor',[0.5,0.5,0.5]);
plot(sample_number,str2double(c_component),'--gs',... 'LineWidth',2,... 'MarkerSize',10,... 'MarkerEdgeColor','c',... 'MarkerFaceColor',[0.5,0.5,0.5]);
plot(sample_number,str2double(d_component),'--gs',... 'LineWidth',2,... 'MarkerSize',10,... 'MarkerEdgeColor','r',... 'MarkerFaceColor',[0.5,0.5,0.5]); xlabel('Time'); ylabel('Accelerometer value'); title('Patient Based Monitoring (1st Sensor Readings)'); axis auto; grid on; drawnow(); disp(data);
Can anyone help me on this????

3 件のコメント

Sara
Sara 2014 年 5 月 8 日
The line may be hidden, try 'MarkerSize',2 to see if the line shows up.
Praveen
Praveen 2014 年 5 月 9 日
But it does not draw as a line.. it plots discontinuous plots.. can u send a code to plot it as a line...
Sara
Sara 2014 年 5 月 9 日
Try attaching the data so we can play around with them (one set will do).

回答 (1 件)

David Sanchez
David Sanchez 2014 年 5 月 9 日

0 投票

plot( sample_number,str2double(a_component) )
and forget about the marker options

この質問は閉じられています。

質問済み:

2014 年 5 月 8 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by