how do I plot one channel of data when I have 100 channels?
Show older comments
I have 100 channels of data in matlab, each channel has 300 samples (100 rows x 300 columns) . How do I select out one channel and plot it on its own?
Accepted Answer
More Answers (1)
Here is the code for this:
select_channel = 10; % select channel you want to plot
M = rand(100, 300); % It is matrix which contain data for all channels
plot(M(select_channel, :)) % It plots data for selected channel
I hope it gives you idea. Good luck!
2 Comments
Niamh Mc Devitt
on 22 Oct 2013
sixwwwwww
on 22 Oct 2013
There could be many possible ways for it. Currently in my mind is Fourier transform because Fourier transform of periodic data creates discrete spectrum and Fourier transform of aperiodic data creates continuous spectrum. Can you share your data so that it could be sorted out?
Categories
Find more on Spectral Measurements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!