Parent Directory
|
Revision Log
|
Revision Graph
- add help sections at the top.
1 | function r = uplus(p) |
2 | %overloaded gcmfaces uplus function : |
3 | % simply calls double uplus function for each face data |
4 | |
5 | r=p; |
6 | for iFace=1:r.nFaces; |
7 | iF=num2str(iFace); |
8 | eval(['r.f' iF '=+p.f' iF ';']); |
9 | end; |
10 | |
11 |
ViewVC Help | |
Powered by ViewVC 1.1.22 |