Changeset 2254
- Timestamp:
- 09/17/09 11:40:21 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/plot/plot_qmuhistnorm.m
r2242 r2254 64 64 else 65 65 varargin=options_structure.histnorm_data; 66 end 67 68 %recover fontsize 69 if isnans(options_structure.fontsize), 70 fontsize=options_structure.fontsize; 71 else 72 fontsize=18; 66 73 end 67 74 … … 189 196 190 197 % add the annotation 191 192 if isnans(options_structure.title), 193 options_structure.title='Relative Frequency Histogram'; 194 end 195 if isnans(options_structure.xlabel), 196 options_structure.xlabel='Interval Edge Value'; 197 end 198 if isnans(options_structure.ylabel), 199 options_structure.ylabel='Relative Frequency'; 200 end 198 ylabel('Relative Frequency','Fontsize',fontsize); 201 199 202 200 if exist('desc','var') … … 252 250 % add the annotation 253 251 254 ylabel('Cumulative Percent' )252 ylabel('Cumulative Percent','FontSize',fontsize) 255 253 256 254 % legend doesn't combine with bar chart above … … 267 265 %hold off 268 266 267 268 %apply options. 269 if isnans(options_structure.title), 270 options_structure.title='Relative Frequency Histogram'; 271 end 272 if isnans(options_structure.xlabel), 273 options_structure.xlabel='Interval Edge Value'; 274 end 275 269 276 if isnan(options_structure.colorbar) 270 277 options_structure.colorbar=0;
Note:
See TracChangeset
for help on using the changeset viewer.