--
You received this message because you are subscribed to the Google Groups "freemat" group.
To post to this group, send email to fre...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/freemat?hl=.
% % Paraboloid
% [x,y] = meshgrid([-2:.1:2]);
% z = 5 - x.^2 - y.^2;
%
% sz=surf(x,y,z);
% set(sz,'facealpha',.3);
%
% axis square
% view(150,30);