Changeset 21824
- Timestamp:
- 07/19/17 14:07:54 (8 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/exp/contourlevelzero.m
r17686 r21824 19 19 20 20 if isempty(mask), error('mask provided is empty'); end 21 21 if length(mask)~=md.mesh.numberofvertices, error('mask provided should be specified at the vertices of the mesh'); end 22 22 23 23 %initialization of some variables … … 59 59 60 60 %find the segments that contain this value 61 pos1=(Range1(:,1)<level & Range1(:,2)> level);62 pos2=(Range2(:,1)<level & Range2(:,2)> level);63 pos3=(Range3(:,1)<level & Range3(:,2)> level);61 pos1=(Range1(:,1)<level & Range1(:,2)>=level); 62 pos2=(Range2(:,1)<level & Range2(:,2)>=level); 63 pos3=(Range3(:,1)<level & Range3(:,2)>=level); 64 64 65 65 %get elements -
issm/trunk-jpl/src/m/plot/plot_contour.m
r21619 r21824 270 270 else 271 271 %clabel(c,h,'color',color,'FontSize',10,'labelspacing',20000); 272 clabel(c,h,'FontSize',10,'labelspacing',20000);273 end 274 end 272 %clabel(c,h,'FontSize',10,'labelspacing',20000); 273 end 274 end
Note:
See TracChangeset
for help on using the changeset viewer.