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