Last change
on this file since 25588 was 22928, checked in by Eric.Larour, 7 years ago |
CHG: new exp routine. + segmentstobasin: building block for meshing out of shapefile segments that concatenate into basin domains.
|
-
Property svn:executable
set to
*
|
File size:
221 bytes
|
Line | |
---|
1 | function bool=isexp(filename)
|
---|
2 | %ISEXP - is a file an expfile?
|
---|
3 | %
|
---|
4 | % Usage:
|
---|
5 | % isexp(filename);
|
---|
6 | %
|
---|
7 | % See also EXPREAD, EXPDOC
|
---|
8 |
|
---|
9 | [path,name,ext]=fileparts(filename);
|
---|
10 | if strcmpi(ext,'.exp'),
|
---|
11 | bool=1;
|
---|
12 | else
|
---|
13 | bool=0;
|
---|
14 | end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.