Last change
on this file since 20875 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:
475 bytes
|
Rev | Line | |
---|
[20875] | 1 | function [pool] = PropagateFlagsFromConnectivity(connectivity,pool,index,flags);
|
---|
| 2 | %PROPAGATEFLAGSFROMCONNECTIVITY - Propagate flags onto mesh, element by element, using connectivity
|
---|
| 3 | %
|
---|
| 4 | % Usage:
|
---|
| 5 | % [pool] = PropagateFlagsFromConnectivity(connectivity,pool,index,flags);
|
---|
| 6 |
|
---|
| 7 | % Check usage
|
---|
| 8 | if nargin~=4
|
---|
| 9 | help PropagateFlagsFromConnectivity
|
---|
| 10 | error('Wrong usage (see above)');
|
---|
| 11 | end
|
---|
| 12 |
|
---|
| 13 | % Call mex module
|
---|
| 14 | [pool] = PropagateFlagsFromConnectivity_matlab(connectivity,pool,index,flags);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.