 Parent Directory
|
 Parent Directory
|  Revision Log
|
 Revision Log
|  Revision Graph
 Revision Graph
- add help sections at the top.
| 1 | function r = repmat(p,varargin) | 
| 2 | %overloaded gcmfaces repmat function : | 
| 3 | % simply calls double repmat 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 '=repmat(p.f' iF ',varargin{:});']); | 
| 12 | end; | 
| 13 | |
| 14 | 
| ViewVC Help | |
| Powered by ViewVC 1.1.22 |