Parent Directory
|
Revision Log
|
Revision Graph
- add overloaded version of end for use with subsref
1 | function ind = end(self,k,n); |
2 | %overloaded gcmfaces end function : |
3 | % simply calls double end function for face #1 if the first argument is a gcmfaces object |
4 | % Note: is only valid for dimensions>=3 |
5 | |
6 | if k<3; error('@gcmfaces/end.m is only valid for dimensions>=3'); end; |
7 | ind = builtin('end', self.f1, k, n); |
8 |
ViewVC Help | |
Powered by ViewVC 1.1.22 |