%
% Show 1D COCE Input in two subplots
%
% Subplots need to be activated on a panel in GUIDE!
subplot(5,1,1,'Parent',handles.examplepanel);
imagesc(COCE.Data/10,[0 1]);
colormap('gray');
axis off;
subplot(5,1,2,'Parent',handles.examplepanel);
plot(COCE.Data(COCE.PopulationSize(1)/2,:));
xlim([1 COCE.PopulationSize(2)]);
set(gca,'YDir','normal');
Title ('Luminance Profile');