Changeset 2609
- Timestamp:
- 11/05/09 09:10:44 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/utils/Exp/readwrite/expread.m
r2607 r2609 6 6 % the exp file, for the density, for the nodes, and a field closed to 7 7 % indicate if the domain is closed. 8 % The first argument is the .exp file to be read and the second one 8 % The first argument is the .exp file to be read and the second one (optional) 9 9 % indicate if the last point shall be read (1 to read it, 0 not to). 10 10 % … … 13 13 % 14 14 % Example: 15 % Struct=expread('domainoutline.exp') 15 16 % Struct=expread('domainoutline.exp',1) 16 17 % … … 21 22 error(['expread error message: file ' filename ' not found!']); 22 23 end 23 if nargin~=2, 24 help expread 25 error('expread error message: second argument not provided'), 24 if nargin<2, 25 whole=1; 26 26 end 27 27
Note:
See TracChangeset
for help on using the changeset viewer.