Borrar filtros
Borrar filtros

How to plot Graph to display EMG signal of each channel separately which the data is 2000x4 double?

4 visualizaciones (últimos 30 días)
Hi all, I have a set of data with value is 2000x4 double, how can I display it separately to have 4 graphs where each graph display 1 channel?

Respuestas (1)

Harry Vancao
Harry Vancao el 4 de Ag. de 2017
This should work if you want to display them all in the same figure. This solution will first create a new figure and hold on will allow you to plot multiple time series to the new figure. As you can see, you can index into your matrix to produce vectors representing each channel of your time series.
n = 2000;
c = 4;
x = (1:n)';
figure; hold on;
for i = 1:c
plot(x, data(:, c))
end
hold off

Community Treasure Hunt

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

Start Hunting!

Translated by