Changeset 7874 for issm/trunk
- Timestamp:
- 04/13/11 12:01:08 (14 years ago)
- Location:
- issm/trunk/src/m/model/plot
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/plot/applyoptions.m
r7651 r7874 338 338 elseif strcmpi(figposition,'mathieu'), 339 339 set(gcf,'Position',[1 1 1580 1150]); 340 elseif strcmpi(figposition,'fullscreen'), 341 set(gcf,'Position',get(0,'ScreenSize')); 342 elseif strcmpi(figposition,'halfright'), 343 screen=get(0,'ScreenSize'); 344 left=screen(1); bott=screen(2); widt=screen(3); heig=screen(4)-25; 345 set(gcf,'Position',fix([left+widt/2 bott widt/2 heig])); 346 elseif strcmpi(figposition,'halfleft'), 347 screen=get(0,'ScreenSize'); 348 left=screen(1); bott=screen(2); widt=screen(3); heig=screen(4)-25; 349 set(gcf,'Position',fix([left bott widt/2 heig])); 340 350 elseif strcmpi(figposition,'portrait'), 341 set(gcf,'Position',[887 7 794 1000]) 351 %reformat with letter paper size (8.5" x 11") 352 screen=get(0,'ScreenSize'); 353 left=screen(1); bott=screen(2); widt=screen(3); heig=screen(4)-25; 354 portrait=fix([left+widt-(heig*8.5/11) bott heig*8.5/11 heig]); 355 set(gcf,'Position',portrait) 356 elseif strcmpi(figposition,'landscape'), 357 %reformat with letter paper size (8.5" x 11") 358 screen=get(0,'ScreenSize'); 359 left=screen(1); bott=screen(2); widt=screen(3); heig=screen(4)-25; 360 landscape=fix([left+widt-(heig*11/8.5) bott heig*11/8.5 heig]); 361 set(gcf,'Position',landscape) 342 362 else 343 disp(''' position'' string not supported yet');363 disp('''figposition'' string not supported yet'); 344 364 end 345 365 else -
issm/trunk/src/m/model/plot/plotdoc.m
r7425 r7874 139 139 disp(' dresp2 is a structure array of responses (where we only need mu and sigma)'); 140 140 disp(' hmin,hmax and hnint are the minimum, maximum and number of intervals of the histogram (optional)'); 141 disp(' '' position'': position of figure. specify name of person for which position settings are hardcoded in applyoptions.m');141 disp(' ''figposition'': position of figure: ''fullscreen'', ''halfright'', ''halfleft'', ''portrait'', ''landscape'',... (hardcoded in applyoptions.m)'); 142 142 disp(' ''hmin'': (numeric, minimum for histogram)'); 143 143 disp(' ''hmax'': (numeric, maximum for histogram)');
Note:
See TracChangeset
for help on using the changeset viewer.