Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How can i draw a line along the plots?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
David Sanchez
el 9 de Mayo de 2014
plot( sample_number,str2double(a_component) )
and forget about the marker options
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!