ax1 = axes('Parent', fig);
[X, Y] = meshgrid(1:50, 1:60);
Z = X.^2 + Y.^2 - cos(X.*Y);
surf(ax1, X, Y, Z, 'edgecolor', 'none');
ax2 = axes('Parent', fig, 'color', 'none', 'gridalpha', 1);
linkprop([ax1 ax2], {'Position', 'XLim', 'YLim', 'ZLim', 'View'});
Here the grid is on top of the surface. It is a bit difficult to tell that it is not the case that the surface is transparent with the grid below it, but in that case the grid would not appear as dark as it does here.
I would add a surface to this drawing, which would be a transparent grid, that is, the holes in the grid are transparent, and not the grid itself
You would not be able to do that just by using "grid on": there is a single grid alpha that is for the entire grid, with no way to make it selective. You would therefore have to draw the grid, such as using a surface or patch. For example surface with 'EdgeAlpha', 'interp' and 'AlphaData' being a 2D array the same size as ZData.
4 Comments
Direct link to this comment
https://ch.mathworks.com/matlabcentral/answers/654963-3d#comment_1149808
Direct link to this comment
https://ch.mathworks.com/matlabcentral/answers/654963-3d#comment_1149808
Direct link to this comment
https://ch.mathworks.com/matlabcentral/answers/654963-3d#comment_1149828
Direct link to this comment
https://ch.mathworks.com/matlabcentral/answers/654963-3d#comment_1149828
Direct link to this comment
https://ch.mathworks.com/matlabcentral/answers/654963-3d#comment_1149843
Direct link to this comment
https://ch.mathworks.com/matlabcentral/answers/654963-3d#comment_1149843
Direct link to this comment
https://ch.mathworks.com/matlabcentral/answers/654963-3d#comment_1151018
Direct link to this comment
https://ch.mathworks.com/matlabcentral/answers/654963-3d#comment_1151018
Sign in to comment.