0001 function fig_conv = show_main_convergence_0(xa)
0002
0003
0004
0005
0006 col = ['r','g','b','c','m','y','k','b'];
0007 figure('name','convergence')
0008 fig_conv= gcf;
0009
0010 subplot(1,5,1)
0011 hold on
0012 for u=1:4
0013 plot(0,xa(u),['.',col(u)],'MarkerSize',12)
0014 end
0015 title('parameters a1,a2,a3,a4')
0016 subplot(1,5,2)
0017 hold on
0018 for u=5:6
0019 plot(0,xa(u),['.',col(u)],'MarkerSize',12)
0020 end
0021 title('parameters a5,a6')
0022 subplot(1,5,3)
0023 hold on
0024 for u=7:8
0025 plot(0,xa(u),['.',col(u)],'MarkerSize',12)
0026 end
0027 title('parameters a7,a8')
0028 subplot(1,5,4)
0029 hold on
0030 plot(0,1,'.k','MarkerSize',12)
0031 subplot(1,5,5)
0032 hold on
0033 plot(0,0,'.k','MarkerSize',12)
0034 end
0035