1 | function plotmodel(md,varargin)
|
---|
2 | %At command prompt, type plotdoc for help on documentation.
|
---|
3 |
|
---|
4 | %First process options
|
---|
5 | options=plotoptions(varargin{:});
|
---|
6 |
|
---|
7 | %get number of subplots
|
---|
8 | subplotwidth=ceil(sqrt(options.numberofplots));
|
---|
9 |
|
---|
10 | %Get figure number and number of plots
|
---|
11 | figurenumber=options.figurenumber;
|
---|
12 | numberofplots=options.numberofplots;
|
---|
13 |
|
---|
14 | %if nlines and ncols specified, then bypass.
|
---|
15 | if exist(options.list{1},'nlines'),
|
---|
16 | nlines=getfieldvalue(options.list{1},'nlines');
|
---|
17 | else
|
---|
18 | nlines=ceil(numberofplots/subplotwidth);
|
---|
19 | end
|
---|
20 |
|
---|
21 | if exist(options.list{1},'ncols'),
|
---|
22 | ncols=getfieldvalue(options.list{1},'ncols');
|
---|
23 | else
|
---|
24 | ncols=subplotwidth;
|
---|
25 | end
|
---|
26 |
|
---|
27 | %check that nlines and ncols were given at the same time!
|
---|
28 | if ((exist(options.list{1},'ncols') & ~exist(options.list{1},'ncols')) | (~exist(options.list{1},'ncols') & exist(options.list{1},'ncols')))
|
---|
29 | error('plotmodel error message: nlines and ncols need to be specified together, or not at all');
|
---|
30 | end
|
---|
31 |
|
---|
32 | %go through subplots
|
---|
33 | if numberofplots,
|
---|
34 |
|
---|
35 | %Create figure
|
---|
36 | if ~exist(options.list{1},'webgl'),
|
---|
37 | f=figure(figurenumber);clf;
|
---|
38 | if strcmpi(getfieldvalue(options.list{1},'visible','on'),'off'),
|
---|
39 | set(f,'Visible','Off');
|
---|
40 | end
|
---|
41 | else
|
---|
42 | plot_gl(md,options.list);
|
---|
43 | return;
|
---|
44 | end
|
---|
45 |
|
---|
46 | if exist(options.list{1},'figposition'), % {{{
|
---|
47 | figposition=getfieldvalue(options.list{1},'figposition');
|
---|
48 | if ischar(figposition),
|
---|
49 | if strcmpi(figposition,'larour'),
|
---|
50 | set(gcf,'Position',[1604 4 1594 1177]);
|
---|
51 | elseif strcmpi(figposition,'larour2'),
|
---|
52 | set(gcf,'Position',[756 62 827 504]);
|
---|
53 | elseif strcmpi(figposition,'mathieu'),
|
---|
54 | set(gcf,'Position',[300 1 1580 1150]);
|
---|
55 | elseif strcmpi(figposition,'fullscreen'),
|
---|
56 | set(gcf,'Position',get(0,'ScreenSize'));
|
---|
57 | elseif strcmpi(figposition,'halfright'),
|
---|
58 | screen=get(0,'ScreenSize');
|
---|
59 | left=screen(1); bott=screen(2); widt=screen(3); heig=screen(4)-25;
|
---|
60 | set(gcf,'Position',fix([left+widt/2 bott widt/2 heig]));
|
---|
61 | elseif strcmpi(figposition,'halfleft'),
|
---|
62 | screen=get(0,'ScreenSize');
|
---|
63 | left=screen(1); bott=screen(2); widt=screen(3); heig=screen(4)-25;
|
---|
64 | set(gcf,'Position',fix([left bott widt/2 heig]));
|
---|
65 | elseif strcmpi(figposition,'square'),
|
---|
66 | screen=get(0,'ScreenSize');
|
---|
67 | left=screen(1); bott=screen(2); widt=min(screen(3)-25,screen(4)-25);
|
---|
68 | set(gcf,'Position',fix([left+(screen(3)-widt) bott widt widt]));
|
---|
69 | elseif strcmpi(figposition,'portrait'),
|
---|
70 | %reformat with letter paper size (8.5" x 11")
|
---|
71 | screen=get(0,'ScreenSize');
|
---|
72 | left=screen(1); bott=screen(2); widt=screen(3); heig=screen(4)-25;
|
---|
73 | portrait=fix([left+widt-(heig*8.5/11) bott heig*8.5/11 heig]);
|
---|
74 | set(gcf,'Position',portrait)
|
---|
75 | elseif strcmpi(figposition,'landscape'),
|
---|
76 | %reformat with letter paper size (8.5" x 11")
|
---|
77 | screen=get(0,'ScreenSize');
|
---|
78 | left=screen(1); bott=screen(2); widt=screen(3); heig=screen(4)-25;
|
---|
79 | landscape=fix([left+widt-(heig*11/8.5) bott heig*11/8.5 heig]);
|
---|
80 | set(gcf,'Position',landscape)
|
---|
81 | else
|
---|
82 | disp('''figposition'' string not supported yet');
|
---|
83 | end
|
---|
84 | else
|
---|
85 | set(gcf,'Position',figposition);
|
---|
86 | end
|
---|
87 | end % }}}
|
---|
88 |
|
---|
89 | %Use zbuffer renderer (snoother colors) and white background
|
---|
90 | set(f,'Renderer','zbuffer','color',getfieldvalue(options.list{1},'figurebackgroundcolor','w'));
|
---|
91 |
|
---|
92 | %Go through all data plottable and close window if an error occurs
|
---|
93 | try,
|
---|
94 | for i=1:numberofplots,
|
---|
95 | plot_manager(getfieldvalue(options.list{i},'model',md),options.list{i},subplotwidth,nlines,ncols,i);
|
---|
96 | %List all unused options
|
---|
97 | displayunused(options.list{i})
|
---|
98 | end
|
---|
99 | catch me,
|
---|
100 | %figure(figurenumber),close;
|
---|
101 | rethrow(me);
|
---|
102 | end
|
---|
103 | else
|
---|
104 | error('plotmodel error message: no output data found. ');
|
---|
105 | end
|
---|