Last change
on this file was 20875, checked in by agscott1, 9 years ago |
NEW: Added native help (ie. 'help ModuleName') for all matlab and python modules under src/wrappers
|
File size:
237 bytes
|
Line | |
---|
1 | function value = IssmConfig(string);
|
---|
2 | %ISSMCONFIG
|
---|
3 | %
|
---|
4 | % Usage:
|
---|
5 | % value = IssmConfig('string');
|
---|
6 |
|
---|
7 | % Check usage
|
---|
8 | if nargin~=1
|
---|
9 | help IssmConfig
|
---|
10 | error('Wrong usage (see above)');
|
---|
11 | end
|
---|
12 |
|
---|
13 | % Call mex module
|
---|
14 | value = IssmConfig_matlab(string);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.