Changeset 21824


Ignore:
Timestamp:
07/19/17 14:07:54 (8 years ago)
Author:
bparizek
Message:

CHG: Enables detection of level 0 on domain edge

Location:
issm/trunk-jpl/src/m
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/exp/contourlevelzero.m

    r17686 r21824  
    1919
    2020if isempty(mask), error('mask provided is empty'); end
    21         if length(mask)~=md.mesh.numberofvertices, error('mask provided should be specified at the vertices of the mesh'); end
     21if length(mask)~=md.mesh.numberofvertices, error('mask provided should be specified at the vertices of the mesh'); end
    2222
    2323%initialization of some variables
     
    5959
    6060%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);
     61pos1=(Range1(:,1)<level & Range1(:,2)>=level);
     62pos2=(Range2(:,1)<level & Range2(:,2)>=level);
     63pos3=(Range3(:,1)<level & Range3(:,2)>=level);
    6464
    6565%get elements
  • issm/trunk-jpl/src/m/plot/plot_contour.m

    r21619 r21824  
    270270        else
    271271                %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
     274end
Note: See TracChangeset for help on using the changeset viewer.