%--------------------------------------------------------------------%
% Alison Chaiken, sole author and maintainer %
% ------------------------------------------------------ %
% GUI-based Matlab and FEMLAB data analysis, instrument %
% control, statistical analysis, finite-element modelling, %
% image acquisition and analysis %
% ------------------------------------------------------- %
% alchaiken@gmail.com %
% http://www.exerciseforthereader.org/ %
% (001)650-279-5600 %
%--------------------------------------------------------------------%
% Pop up a section plot with three traces for RGB.
figure;
handles.SectionPlot=gcf;
UpperLeftCurrentWindow
% Update handles structure
guidata(handles.ImageSectionGenerator, handles)
r=plot(temporary,redplot);
set(r,{'Color'},{'r'})
hold on
g=plot(temporary,greenplot);
set(g,{'Color'},{'g'})
b=plot(temporary,blueplot);
set(b,{'Color'},{'b'})
LabelSectionPlot
hold off