I would like to produce following 3D visualization in MATLAB:
mydata = rand(100,100,100);
How may I do it for mydata?
I would like to produce following 3D visualization in MATLAB:
mydata = rand(100,100,100);
How may I do it for mydata?
figure
volshow(mydata)
or
volumeViewer(mydata)