Changeset 21370
- Timestamp:
- 11/12/16 19:33:52 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-larour-NatGeoScience2016/src/m/exp/expread.m
r13730 r21370 1 function Struct=expread(filename )1 function Struct=expread(filename,varargin) 2 2 %EXPREAD - read a file exp and build a Structure 3 3 % … … 17 17 % 18 18 % See also EXPDOC, EXPWRITEASVERTICES 19 20 %recover options 21 options=pairoptions(varargin{:}); 19 22 20 23 %some checks … … 80 83 %close file 81 84 fclose(fid); 85 86 invert=getfieldvalue(options,'invert',0); 87 if invert, 88 for i=1:length(Struct), 89 Struct(i).x=flipud(Struct(i).x); 90 Struct(i).y=flipud(Struct(i).y); 91 end 92 end
Note:
See TracChangeset
for help on using the changeset viewer.