Parent Directory
|
Revision Log
|
Revision Graph
Checking in work done with Dimitri on high-resolution cube gridding and parallel
communications.
o code is in a contrib experiment for now so we can continue collaborating
on it. However most code is general and will be moved into main branch once
it is fully hardened.
o There are README files in the contrib root and in the subdirectories that
explain the contents
| 1 | cnh | 1.1 | function [] = plotcube(X,Y,Z,C) |
| 2 | |||
| 3 | n=size(X,3); | ||
| 4 | |||
| 5 | surf(X(:,:,1),Y(:,:,1),Z(:,:,1),C(:,:,1)) | ||
| 6 | hold on | ||
| 7 | for j=2:n | ||
| 8 | surf(X(:,:,j),Y(:,:,j),Z(:,:,j),C(:,:,j)) | ||
| 9 | end | ||
| 10 | hold off | ||
| 11 | xlabel('X'); | ||
| 12 | ylabel('Y'); | ||
| 13 | zlabel('Z'); |
| ViewVC Help | |
| Powered by ViewVC 1.1.22 |