Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8585961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:11:38+00:00 2026-06-11T22:11:38+00:00

In my polar plot in Matlab, I have default labels for Theta (0, 30,

  • 0

In my polar plot in Matlab, I have default labels for Theta (0, 30, 60, .., 330) and Rho (20, 40, .., 100).
I can remove Theta label using command

set(findall(gca, 'String', '0'),'String', ' ');

Please advice how to remove Rho labels (20, 40, .., 100) from the figure.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T22:11:40+00:00Added an answer on June 11, 2026 at 10:11 pm

    To remove all labels simply type

    delete(findall(gcf,'type','text'));
    

    Since the polar plot labels are hidden text objects placed around on the plot, you can not simply find them by accessing axes. To remove only some of them you will need to explicitly find the text objects containing those particular labels you want to delete. In your case, look for text objects containing Rho:

    % Get all strings in the hidden labels, choose the ones you want to delete
    % Note that some of the labels may contain spaces - you need to be exact.
    get(findall(gcf, 'type', 'text'), 'string');
    
    % say your labels have the following strings..
    rho_labels = {'20' '40' '60' '80' '100'};
    for r=1:length(rho_labels)
        delete(findall(gcf, 'string', rho_labels{r}))
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using polar plots (POLAR(THETA,RHO)) in MATLAB. Is there an easy way to fix
I want a radial(polar) plot using gnuplot (i.e in circular co-ordinate system(r,theta). Here I
I'm trying to annotate a polar plot with data tips labelled with 'R:...,Theta:...' where
I am using matplotlib and numpy to make a polar plot. Here is some
I have the following Python code which I am using to plot a filled
Some of the Polar heart rate monitors can emit training session information using sound.
I have a scatter-plot with many values on a polar axis - coord_polar() .
If I have a 2D line given in polar coordinates (i.e. rho distance from
I´ve been attempting to get a polar plotting in a PolarChart using MSchart, and
I have some Java code which looks roughly like this: String urlString = ftp://polar.ncep.noaa.gov/pub/history/waves/multi_1.glo_30m.dp.200601.grb2;

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.