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