How to plot Graph to display EMG signal of each channel separately which the data is 2000x4 double?
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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?
0 commentaires
Réponses (1)
Harry Vancao
le 4 Août 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
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!