


brede_tal_concere - Return the contour of the cerebellum
function C = brede_tal_concere
Output: C Coordinates for the contour
This function will read and return the digitized coordinates of
the cerebellum from the Talairach atlas book.
The coordinates are read from data/brede_tal_concere.txt
Example:
brede_ta3_frame
C = brede_tal_concere;
i = find(C(:,3)==-0.012);
hold on, plot3(C(i,1), C(i,2), C(i,3), 'r'), hold off
brede_ta3_frame
C = brede_tal_concere;
hold on
Z = unique(C(:,3));
for z = Z',
i = find(C(:,3)==z);
plot3(C(i,1), C(i,2), C(i,3), 'm');
end
hold off
See also BREDE, BREDE_WRITE_NUAGES.
$Id: brede_tal_concere.m,v 1.3 2002/04/17 16:22:23 fnielsen Exp $