📄 eegdraw.m
字号:
% eegdraw() - subroutine used by eegplotold() to plot data.%% Author: Colin Humphries, CNL, Salk Institute, La Jolla, 7/96% Copyright (C) Colin Humphries, CNL, Salk Institute 7/96 from eegplot()%% This program is free software; you can redistribute it and/or modify% it under the terms of the GNU General Public License as published by% the Free Software Foundation; either version 2 of the License, or% (at your option) any later version.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the% GNU General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA% $Log: eegdraw.m,v $% Revision 1.1 2002/04/05 17:36:45 jorn% Initial revision%% 11-07-97 fix incorrect start times -Scott Makeig% 01-25-02 reformated help & license -ad function y = eegdraw(fighandle)%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Extract variables from figure and axes%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%userdata = get(fighandle,'UserData');samplerate = userdata(1);PLOT_TIME = userdata(2);spacing_var = userdata(3);time = userdata(4);maxtime = userdata(5);axhandle = userdata(6);plotcolor = userdata(7);disp_scale = userdata(12);colors = ['y','w'];data = get(axhandle,'UserData');if samplerate <=0 fprintf('Samplerate too small! Resetting it to 1.0.\n') samplerate = 1.0;endif PLOT_TIME < 2/samplerate PLOT_TIME = 2/samplerate; fprintf('Window width too small! Resetting it to 2 samples.\n');endif time >= maxtime % fix incorrect start time time = max(maxtime-PLOT_TIME,0); fprintf('Start time too large! Resetting it to %f.\n',time)elseif time < 0 time = 0; fprintf('Start time cannot be negative! Resetting it to 0.\n')end%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Define internal variables%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%[chans,frames] = size(data);%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Label x-axis - relabel the x-axis based on % the new value of time.% Labels are placed at one-second intervals%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%cla % Clear figureXlab = num2str(time);for j = 1:1:PLOT_TIME Q = num2str(time+j); Xlab = str2mat(Xlab, Q);endset (gca, 'Ytick', 0:spacing_var:chans*spacing_var) set (gca, 'XTickLabels', Xlab) % needs TickLabels with s in Matlab 4.2set (gca, 'XTick',(0:samplerate:PLOT_TIME*samplerate))axis([0 PLOT_TIME*samplerate 0 (chans+1)*spacing_var]);%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Plot data%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%for i = 1:chans %repeat for each channel if (maxtime-time>PLOT_TIME) F = data(chans-i+1,(time*samplerate)+1:((time+PLOT_TIME)*samplerate)); else F = data(chans-i+1,(time*samplerate)+1:(maxtime*samplerate)); end F = F - mean(F) + i*spacing_var; plot (F,'clipping','off','color',colors(plotcolor))end%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Plot scaling I%%%%%%%%%%%%%%%%%%%%%%%%%%%%%if disp_scale == 1 ps = PLOT_TIME*samplerate; sv = spacing_var; line([1.03*ps,1.03*ps],[1.5*sv 2.5*sv],'clipping','off','color','w') line([1.01*ps,1.05*ps],[2.5*sv,2.5*sv],'clipping','off','color','w') line([1.01*ps,1.05*ps],[1.5*sv,1.5*sv],'clipping','off','color','w') text(1.05*ps,2*sv,num2str(round(sv)),'clipping','off')end%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Set slider=edit - reset the value of % the user controls so they agree.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%H = findobj(fighandle,'style','slider');D = findobj(fighandle,'style','edit');set (D, 'string', num2str(time));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -