Changeset 13975 for issm/trunk/src/m/exp
- Timestamp:
- 11/16/12 08:10:16 (13 years ago)
- Location:
- issm/trunk
- Files:
-
- 27 edited
-
. (modified) (1 prop)
-
src (modified) (1 prop)
-
src/m/exp/expcoarsen.m (modified) (1 diff)
-
src/m/exp/expcontract.m (modified) (1 diff)
-
src/m/exp/expcreatecontour.m (modified) (2 diffs)
-
src/m/exp/expcreateprofile.m (modified) (1 diff)
-
src/m/exp/expexcludeoutliers.m (modified) (1 diff)
-
src/m/exp/expflip.m (modified) (1 diff)
-
src/m/exp/expll2xy.m (modified) (1 diff)
-
src/m/exp/expread.m (modified) (1 diff)
-
src/m/exp/expswapxy.m (modified) (1 diff)
-
src/m/exp/exptool.m (modified) (1 diff)
-
src/m/exp/expwrite.m (modified) (3 diffs)
-
src/m/exp/expxy2ll.m (modified) (1 diff)
-
src/m/exp/manipulation/addcontour.m (modified) (3 diffs)
-
src/m/exp/manipulation/addendprofile.m (modified) (2 diffs)
-
src/m/exp/manipulation/addinsideprofile.m (modified) (2 diffs)
-
src/m/exp/manipulation/addprofile.m (modified) (3 diffs)
-
src/m/exp/manipulation/closeprofile.m (modified) (3 diffs)
-
src/m/exp/manipulation/cutarea.m (modified) (2 diffs)
-
src/m/exp/manipulation/cutprofile.m (modified) (2 diffs)
-
src/m/exp/manipulation/mergeprofiles.m (modified) (1 diff)
-
src/m/exp/manipulation/modifyposition.m (modified) (2 diffs)
-
src/m/exp/manipulation/orientprofile.m (modified) (2 diffs)
-
src/m/exp/manipulation/removepoints.m (modified) (2 diffs)
-
src/m/exp/manipulation/removeprofile.m (modified) (2 diffs)
-
src/m/exp/manipulation/removeseveralpoints.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 13397-13398,13401,13407-13582,13584-13974
- Property svn:mergeinfo changed
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/m/exp/expcoarsen.m
r13395 r13975 1 function expcoarsen(newfile,oldfile,resolution) ;1 function expcoarsen(newfile,oldfile,resolution) 2 2 %EXPCOARSEN - coarsen an exp contour 3 3 % -
issm/trunk/src/m/exp/expcontract.m
r13395 r13975 6 6 % 7 7 % See also EXPMASTER, EXPDOC 8 9 8 10 9 contour=expread(oldfile); -
issm/trunk/src/m/exp/expcreatecontour.m
r13395 r13975 1 function expcreatecontour(filename) ;1 function expcreatecontour(filename) 2 2 %EXPCREATECONTOUR - create a contour from a list of points 3 3 % … … 34 34 %write contour using expwrite 35 35 expwrite(a,filename); 36 -
issm/trunk/src/m/exp/expcreateprofile.m
r13395 r13975 1 function expcreateprofile(filename) ;1 function expcreateprofile(filename) 2 2 %EXPCREATEPROFILE - create an Argus file from a list of points 3 3 % -
issm/trunk/src/m/exp/expexcludeoutliers.m
r13395 r13975 7 7 % 8 8 % See also EXPMASTER, EXPDOC 9 10 9 11 10 contour=expread(contourname); -
issm/trunk/src/m/exp/expflip.m
r13395 r13975 5 5 % 6 6 % 7 8 9 10 11 7 12 8 a=expread(domainname,1); -
issm/trunk/src/m/exp/expll2xy.m
r13395 r13975 5 5 % - sgn = Sign of latitude +1 : north latitude (default is mer=45 lat=70) 6 6 % -1 : south latitude (default is mer=0 lat=71) 7 8 7 9 8 %Get central_meridian and standard_parallel depending on hemisphere -
issm/trunk/src/m/exp/expread.m
r13395 r13975 1 function Struct=expread(filename) ;1 function Struct=expread(filename) 2 2 %EXPREAD - read a file exp and build a Structure 3 3 % -
issm/trunk/src/m/exp/expswapxy.m
r13395 r13975 6 6 % 7 7 % See also EXPMASTER, EXPDOC 8 9 8 10 9 contours=expread(filename,1); -
issm/trunk/src/m/exp/exptool.m
r13395 r13975 308 308 backup{counter,4}=closed; 309 309 310 311 310 case 12 312 311 -
issm/trunk/src/m/exp/expwrite.m
r13395 r13975 1 function expwrite(a,filename) ;1 function expwrite(a,filename) 2 2 %EXPWRITE - write an Argus file from a structure given in input 3 3 % … … 20 20 error('contours x and y coordinates must be of identical size'); 21 21 end 22 22 23 23 if isfield(a,'name'), 24 24 if ~isempty(a(n).name), … … 30 30 fprintf(fid,'%s\n','## Name:'); 31 31 end 32 32 33 33 fprintf(fid,'%s\n','## Icon:0'); 34 34 fprintf(fid,'%s\n','# Points Count Value'); -
issm/trunk/src/m/exp/expxy2ll.m
r13395 r13975 5 5 % - sgn = Sign of latitude +1 : north latitude (default is mer=45 lat=70) 6 6 % -1 : south latitude (default is mer=0 lat=71) 7 8 7 9 8 %Get central_meridian and standard_parallel depending on hemisphere -
issm/trunk/src/m/exp/manipulation/addcontour.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=addcontour(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=addcontour(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %ADDCONTOUR - add a closed contour 3 3 % … … 7 7 % Usage: 8 8 % [A,numprofiles,numpoints,closed]=addcontour(A,numprofiles,numpoints,closed,prevplot,root,options) 9 9 10 10 title('click to add a point to the new profile, RETURN to exit','FontSize',14) 11 11 hold on … … 18 18 19 19 [xi,yi] = ginput(1); 20 20 21 21 if ~isempty(xi) 22 22 x(end+1,1)=xi; -
issm/trunk/src/m/exp/manipulation/addendprofile.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=addendprofile(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=addendprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %ADDENDPROFILE - add point at the end of a n existing profile 3 3 % … … 7 7 % Usage: 8 8 % [A,numprofiles,numpoints,closed]=addendprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 9 9 10 10 %some checks 11 11 if numprofiles==0 -
issm/trunk/src/m/exp/manipulation/addinsideprofile.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=addinsideprofile(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=addinsideprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %ADDINSIDEPROFILE - add apoint inside a profile 3 3 % … … 7 7 % Usage: 8 8 % [A,numprofiles,numpoints,closed]=addinsideprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 9 9 10 10 %some checks 11 11 if numprofiles==0 -
issm/trunk/src/m/exp/manipulation/addprofile.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=addprofile(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=addprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %ADDPROFILE - add a profile 3 3 % … … 7 7 % Usage: 8 8 % [A,numprofiles,numpoints,closed]=addprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 9 9 10 10 title('click to add a point to the new profile, RETURN to exit','FontSize',14) 11 11 hold on … … 18 18 19 19 [xi,yi] = ginput(1); 20 20 21 21 if ~isempty(xi) 22 22 x(end+1,1)=xi; -
issm/trunk/src/m/exp/manipulation/closeprofile.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=closeprofile(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=closeprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %CLOSEPROFILE - close one or several profile 3 3 % … … 13 13 return 14 14 end 15 15 16 16 title('click on the profiles to be closed, RETURN to exit','FontSize',14) 17 17 hold on … … 33 33 34 34 [xi,yi] = ginput(1); 35 35 36 36 if ~isempty(xi) 37 37 -
issm/trunk/src/m/exp/manipulation/cutarea.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=cutarea(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=cutarea(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %CUTAREA - cut several point of a profile 3 3 % … … 10 10 % Usage: 11 11 % [A,numprofiles,numpoints,closed]=cutarea(A,numprofiles,numpoints,closed,prevplot,root,options) 12 12 13 13 hold on 14 14 loop=1; -
issm/trunk/src/m/exp/manipulation/cutprofile.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=cutprofile(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=cutprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %CUTPROFILE - cut a profile 3 3 % … … 7 7 % Usage: 8 8 % [A,numprofiles,numpoints,closed]=cutprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 9 9 10 10 %some checks 11 11 if numprofiles==0 -
issm/trunk/src/m/exp/manipulation/mergeprofiles.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=mergeprofiles(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=mergeprofiles(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %MERGEPROFILES - merge profiles 3 3 % -
issm/trunk/src/m/exp/manipulation/modifyposition.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=modifyposition(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=modifyposition(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %MODIFYPOSITION - modify the prosition of a point of a profile 3 3 % … … 7 7 % Usage: 8 8 % [A,numprofiles,numpoints,closed]=modifyposition(A,numprofiles,numpoints,closed,prevplot,root,options) 9 9 10 10 %some checks 11 11 if numprofiles==0 -
issm/trunk/src/m/exp/manipulation/orientprofile.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=orientprofile(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=orientprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %ORIENTPROFILE - cahnge profile orientation 3 3 % … … 21 21 return 22 22 end 23 23 24 24 [xi,yi] = ginput(1); 25 25 26 26 if ~isempty(xi) 27 27 -
issm/trunk/src/m/exp/manipulation/removepoints.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=removepoints(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=removepoints(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %REMOVEPOINTS - remove a point from a profile 3 3 % … … 7 7 % Usage: 8 8 % [A,numprofiles,numpoints,closed]=removepoints(A,numprofiles,numpoints,closed,prevplot,root,options) 9 9 10 10 %some checks 11 11 if numprofiles==0 -
issm/trunk/src/m/exp/manipulation/removeprofile.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=removeprofile(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=removeprofile(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %REMOVEPROFILE - delete a profile 3 3 % … … 21 21 return 22 22 end 23 23 24 24 [xi,yi] = ginput(1); 25 25 26 26 if ~isempty(xi) 27 27 -
issm/trunk/src/m/exp/manipulation/removeseveralpoints.m
r13395 r13975 1 function [A,numprofiles,numpoints,closed]=removeseveralpoints(A,numprofiles,numpoints,closed,prevplot,root,options) ;1 function [A,numprofiles,numpoints,closed]=removeseveralpoints(A,numprofiles,numpoints,closed,prevplot,root,options) 2 2 %REMOVESEVERALPOINTS - remove several point 3 3 % … … 7 7 % Usage: 8 8 % [A,numprofiles,numpoints,closed]=removeseveralpoints(A,numprofiles,numpoints,closed,prevplot,root,options) 9 9 10 10 %some checks 11 11 if numprofiles==0
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/trac/issm/chrome/common/trac_banner.png)