EEG signal plot varies if all channel data is plotted separately...
2 次查看(过去 30 天)
显示 更早的评论
I have plot my EEG data with the code given below:
x=load('02SegmentedData.mat');
LC=length(x)
fs=125
TC=[0:LC-1]/fs
%Plotting
figure;subplot (211),plot(TC,x)
xlabel('Time (s)'), ylabel('Amplitude (uV)'), title('Complete EEG data')
hold on;
I got the plot with the code given ablove but it is different from the plot which i got after plotting each channel data seperatley with the code given below:
for k=1:16
subplot(4,4,k),plot(TC,x(:,k))
xlabel('Time (s)'), ylabel('Amplitude (uV)'), title(sprintf('EEG signal of %d channel',k))
hold on;
end
Any help will be highly appreciated.Why i am getting diffenerent amplitude value in these two graph
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 EEG/MEG/ECoG 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!