In Matlab:
When plotting in 3d as following:
xxxxx=normrnd(1,1,[1,10000]);
yyyyy=normrnd(1,1,[1,10000]);
MinX=min(xxxxx); MaxX=max(xxxxx); MinY=min(yyyyy); MaxY=max(yyyyy);
x = MinX:(MaxX-MinX)/10:MaxX;
y = MinY:(MaxY-MinY)/10:MaxY;
[X,Y] = meshgrid(x,y);
Hist3 = hist3([xxxxx' ,yyyyy'],{x y});
figure();
surf(X,Y,Hist3);
colormap(jet);
shading interp;
Is it possible to specify a 'transparent' (white?) color for the surface at 'zero' (instead of very dark blue, as seen if you plot the code above)?
Thanks on advance!