MATLAB: Displaying azimuth angles around a cylinder

anglesazimuthcylindermarktick

Hi,
Is there an easy way to display tick marks in terms of azimuthal angles? For instance, I would like to display azimuth angles around the bottom of the cylinder:
[X,Y,Z] = cylinder;
surf(X,Y,Z)
Dave

Best Answer

polar(0,1);hold on
[X,Y,Z] = cylinder;
surf(X,Y,Z)
Related Question