Changeset 2535
- Timestamp:
- 10/26/09 13:47:12 (15 years ago)
- Location:
- issm/trunk/src/m
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/display/displaycontrol.m
r2365 r2535 25 25 fielddisplay(md,'cm_maxdmp_slope','dampening coefficient applied to parameter above maximum, 0 if not applied'); 26 26 fielddisplay(md,'cm_min','absolute minimum acceptable value of the inversed parameter'); 27 fielddisplay(md,'cm_max','absolute m inimum acceptable value of the inversed parameter');27 fielddisplay(md,'cm_max','absolute maximum acceptable value of the inversed parameter'); 28 28 fielddisplay(md,'meanvel','velocity scaling factor when evaluating relative or logarithmic misfit'); 29 29 fielddisplay(md,'epsvel','for relative fit, avoids misfit becoming infinity, for logarithmic fit, threshold for velocity'); -
issm/trunk/src/m/classes/public/plot/latlonoverlay.m
r2439 r2535 81 81 latitudes=lat'; 82 82 longitudes=lon(i)*ones(length(latitudes),1); 83 [x,y]=ll2xy (latitudes,longitudes);83 [x,y]=ll2xy_bak(latitudes,longitudes); 84 84 pos=find(x<=xlimits(2) & x>=xlimits(1) & y<=ylimits(2) & y>=ylimits(1)); 85 85 if length(pos)<=1, 86 86 continue; 87 87 end 88 disp('ok2'); 89 88 90 x=x(pos);y=y(pos); 89 91 … … 123 125 longitudes=lon'; 124 126 latitudes=lat(i)*ones(length(longitudes),1); 125 [x,y]=ll2xy (latitudes,longitudes);127 [x,y]=ll2xy_bak(latitudes,longitudes); 126 128 pos=find(x<=xlimits(2) & x>=xlimits(1) & y<=ylimits(2) & y>=ylimits(1)); 127 129 if length(pos)<=1,
Note:
See TracChangeset
for help on using the changeset viewer.