source: issm/branches/trunk-larour-SLPS2020/src/m/exp/isexp.m@ 25588

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 
1function 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);
10if strcmpi(ext,'.exp'),
11 bool=1;
12else
13 bool=0;
14end
Note: See TracBrowser for help on using the repository browser.