Parent Directory
|
Revision Log
|
Revision Graph
- add convn.m reshape.m to the list of overloaded operators.
1 | function r = convn(p,varargin) |
2 | % CONVN gcmfaces convn function : |
3 | % simply calls double convn 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 '=convn(p.f' iF ',varargin{:});']); |
12 | end; |
13 | |
14 |
ViewVC Help | |
Powered by ViewVC 1.1.22 |