Skip to content
Snippets Groups Projects
Commit db6a8816 authored by Olivier Sauter's avatar Olivier Sauter
Browse files

fix when have many traces to plot

parent b7ae88fe
No related branches found
No related tags found
1 merge request!81add plot nblopt results from CHEASEgui
...@@ -99,7 +99,7 @@ for i=1:numel(ocols) ...@@ -99,7 +99,7 @@ for i=1:numel(ocols)
iunstable = [ocols{i}.pdata_in(:,incbal) ~= 0]; iunstable = [ocols{i}.pdata_in(:,incbal) ~= 0];
aa = ocols{i}.pdata_in(:,ix); aa = ocols{i}.pdata_in(:,ix);
aa(iunstable) = NaN; aa(iunstable) = NaN;
handles_nblopt_plot.plot{i,n_fig} = plotos(aa,ocols{i}.pdata_in(:,iy),'*-',[2 5],0,colos(i,:)); handles_nblopt_plot.plot{i,n_fig} = plotos(aa,ocols{i}.pdata_in(:,iy),'*-',[2 5],0,colos(mod(i-1,14)+1,:));
hold on hold on
end end
handles_nblopt_plot.title{n_fig} = title(['stable points ' suffix_titles]); handles_nblopt_plot.title{n_fig} = title(['stable points ' suffix_titles]);
...@@ -108,7 +108,7 @@ handles_nblopt_plot.title{n_fig} = title(['stable points ' suffix_titles]); ...@@ -108,7 +108,7 @@ handles_nblopt_plot.title{n_fig} = title(['stable points ' suffix_titles]);
% $$$ istable = [ocols{i}.pdata_in(:,incbal) == 0]; % $$$ istable = [ocols{i}.pdata_in(:,incbal) == 0];
% $$$ aa = ocols{i}.pdata_in(:,ix); % $$$ aa = ocols{i}.pdata_in(:,ix);
% $$$ aa(istable) = NaN; % $$$ aa(istable) = NaN;
% $$$ plotos(aa,ocols{i}.pdata_in(:,iy),'s-',[1 6],0,colos(i,:)); % $$$ plotos(aa,ocols{i}.pdata_in(:,iy),'s-',[1 6],0,colos(mod(i-1,14)+1,:));
% $$$ hold on % $$$ hold on
% $$$ end % $$$ end
xlabel(ocols{i}.labels{ix}) xlabel(ocols{i}.labels{ix})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment