Displaying azimuth angles around a cylinder

3 views (last 30 days)
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

Accepted Answer

Dave
Dave on 11 Oct 2014
Edited: Dave on 11 Oct 2014
polar(0,1);hold on
[X,Y,Z] = cylinder;
surf(X,Y,Z)

More Answers (0)

Categories

Find more on Environment and Clutter in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!