Changeset 21370


Ignore:
Timestamp:
11/12/16 19:33:52 (8 years ago)
Author:
Eric.Larour
Message:

CHG: added ability to invert profile.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-larour-NatGeoScience2016/src/m/exp/expread.m

    r13730 r21370  
    1 function Struct=expread(filename)
     1function Struct=expread(filename,varargin)
    22%EXPREAD - read a file exp and build a Structure
    33%
     
    1717%
    1818%   See also EXPDOC, EXPWRITEASVERTICES
     19
     20%recover options
     21options=pairoptions(varargin{:});
    1922
    2023%some checks
     
    8083%close file
    8184fclose(fid);
     85       
     86invert=getfieldvalue(options,'invert',0);
     87if 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
     92end
Note: See TracChangeset for help on using the changeset viewer.