How to plot Graph to display EMG signal of each channel separately which the data is 2000x4 double?
6 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Harry Vancao
2017-8-4
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 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!