source:
issm/oecreview/Archive/24684-25833/ISSM-24744-24745.diff
Last change on this file was 25834, checked in by , 4 years ago | |
---|---|
File size: 661 bytes |
-
../trunk-jpl/src/m/plot/applyoptions.m
50 50 %axis 51 51 set(gca,'FontSize',getfieldvalue(options,'axisfontsize',fontsize));; 52 52 if exist(options,'axis') 53 eval(['axis ' getfieldvalue(options,'axis')]); 53 axisopts = getfieldvalue(options,'axis'); 54 if ischar(axisopts) & contains(axisopts,' '); 55 axisopts = strsplit(axisopts); 56 axis(axisopts{:}); 57 else 58 axis(axisopts); 59 end 54 60 else 55 61 if strcmp(domaintype(md.mesh),'3D'), 56 62 if ~exist(options,'layer'),
Note:
See TracBrowser
for help on using the repository browser.