Parent Directory
|
Revision Log
|
Revision Graph
- add help sections at the top.
| 1 | gforget | 1.1 | function r = find(p,varargin) |
| 2 | gforget | 1.2 | %overloaded gcmfaces find function : |
| 3 | % simply calls double find function for each face data | ||
| 4 | % if the first arguments is a gcmfaces object | ||
| 5 | % passing over the other arguments | ||
| 6 | gforget | 1.1 | |
| 7 | r=p; | ||
| 8 | |||
| 9 | for iFace=1:r.nFaces; | ||
| 10 | iF=num2str(iFace); | ||
| 11 | eval(['r.f' iF '=find(p.f' iF ',varargin{:});']); | ||
| 12 | end; | ||
| 13 | |||
| 14 |
| ViewVC Help | |
| Powered by ViewVC 1.1.22 |