Changeset 7986
- Timestamp:
- 04/19/11 15:07:23 (14 years ago)
- Location:
- issm/trunk/src/m/model/plot
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/plot/plot_manager.m
r7651 r7986 52 52 case 'part_hist', 53 53 plot_parthist(md,options,nlines,ncols,i); 54 return; 55 case 'part_hist_n', 56 plot_parthistn(md,options,nlines,ncols,i); 57 return; 58 case 'part_hist_w', 59 plot_parthistw(md,options,nlines,ncols,i); 54 60 return; 55 61 case 'elements_type', -
issm/trunk/src/m/model/plot/plot_parthist.m
r4732 r7986 26 26 subplot(2,1,1) 27 27 bar(imin:imax,part(:,1)); 28 xlim([imin imax])28 xlim([imin-0.5 imax+0.5]) 29 29 title('Number of Nodes in Each Partition') 30 30 31 31 subplot(2,1,2) 32 32 bar(imin:imax,part(:,2)); 33 xlim([imin imax])34 title('Total weight in Each Partition')33 xlim([imin-0.5 imax+0.5]) 34 title('Total Weight in Each Partition')
Note:
See TracChangeset
for help on using the changeset viewer.