Home > Matching_SYM_LSM > src > 2D_LSM_62 > 2D_LSM_62_sym_Functions > show_main_convergence_0.m

show_main_convergence_0

PURPOSE ^

% show start of convergence

SYNOPSIS ^

function fig_conv = show_main_convergence_0(xa)

DESCRIPTION ^

% show start of convergence

 wf 7/2020

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function fig_conv = show_main_convergence_0(xa)
0002 %% show start of convergence
0003 %
0004 % wf 7/2020
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

Generated on Sun 19-Jul-2020 23:00:25 by m2html © 2005