Changeset 12602
- Timestamp:
- 07/03/12 08:48:35 (13 years ago)
- Location:
- issm/trunk-jpl/src/m/model/plot
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/model/plot/plot_profile.m
r12376 r12602 1 function plot_profile(md,data,options,nlines,ncols,i )1 function plot_profile(md,data,options,nlines,ncols,ii) 2 2 %PLOT_SECTION - plot a given field on a profile 3 3 % … … 43 43 44 44 %plot profile 45 subplot(nlines,ncols,i )45 subplot(nlines,ncols,ii) 46 46 plot(data_interp,z,'color',color(i,:),'LineWidth',getfieldvalue(options,'linewidth',1),'LineStyle','-'); 47 47 hold on; -
issm/trunk-jpl/src/m/model/plot/plotmodel.m
r12390 r12602 48 48 for i=1:numberofplots, 49 49 plot_manager(getfieldvalue(options.list{i},'model',md),options.list{i},subplotwidth,nlines,ncols,i); 50 51 50 end 52 51 catch me,
Note:
See TracChangeset
for help on using the changeset viewer.