VERB_code_2.3
Plot.m
1 %%
2 addpath('../Setup/');
3 addpath('../Setup/Various_functions');
4 
5 if(~exist('FIGURE','var'))
6  FIGURE = '1'; % '1', '2Mixed', '2NonMixed'
7 end
8 
9 SAVEFIG = true;
10 SAVEMOV = false;
11 %figure('Position',[10 200 900 300]);
12 
13 switch(FIGURE)
14  case '1'
15  Figure_1
16  case '2'
17  Figure_2
18  case '3'
19  Figure_3
20 end
21 
22 if(SAVEFIG || SAVEMOV)
23  saveas(gcf, ['../Figures/Figure_' FIGURE]);
24  close(gcf);
25 end
26 
27 % if(SAVEFIG)
28 % saveas(gcf,['../Figures/Plot_PSD_Energy_Alpha.png']);
29 % close(gcf);
30 % end
void gcf(double *gammcf, double a, double x, double *gln)
Returns the incomplete gamma function Q(a, x) evaluated by its continued fraction representation as g...
Definition: erf.cpp:103