image thumbnail
from makestereofig.m by Allen Minton
Converts a 3D (x,y,z) Cartesian plot to anaglyphic stereo

plotdisplay2(photo,location)
function plotdisplay2(photo,location)

close;
figure('NumberTitle','off','units','normal','Position',location);
image(photo);
set(gca,'DataAspectRatio',[1 1 1], ...
           'Position', [0.05 0.05 0.9 0.85]);
axis off;

Contact us