 Parent Directory
|
 Parent Directory
|  Revision Log
|
 Revision Log
|  Revision Graph
 Revision Graph
matlab_class core routine: gcmfaces methods
| 1 | gforget | 1.1 | function [aU,aV]=exch_UV(bU,bV); | 
| 2 | |||
| 3 | if strcmp(bU.gridType,'llc'); | ||
| 4 | [aU,aV]=exch_UV_llc(bU,bV); | ||
| 5 | elseif strcmp(bU.gridType,'cube'); | ||
| 6 | [aU,aV]=exch_UV_cube(bU,bV); | ||
| 7 | elseif strcmp(bU.gridType,'llpc'); | ||
| 8 | [aU,aV]=exch_UV_llpc(bU,bV); | ||
| 9 | elseif strcmp(bU.gridType,'ll'); | ||
| 10 | [aU,aV]=exch_UV_ll(bU,bV); | ||
| 11 | else; | ||
| 12 | error(['exch_UV not implemented for ' bU.gridType '!?']); | ||
| 13 | end; | ||
| 14 | 
| ViewVC Help | |
| Powered by ViewVC 1.1.22 |