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 7944599
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T00:35:58+00:00 2026-06-04T00:35:58+00:00

I have a figure file (scatter.fig) . This figure has many scatter points plotter

  • 0

I have a figure file (scatter.fig) . This figure has many scatter points plotter using scatter(). Now i just have this fig file, I need to increase the marker size of all scatter points. Tried it manually but its very difficult.
Is there a way i can do something like
H=figurehandle()
s= points(h)
set(s,’markersize’);

I just could not figure out the exact commands.

Thanks.

  • 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-04T00:36:00+00:00Added an answer on June 4, 2026 at 12:36 am

    You need to get a handle to the scattergroup object to change the marker properties. As proposed by Jonas in a comment, you can get it easily by

       % get handle to scattergroup object
       h = gco;
    

    Since the scatter group is a child of the axis, you could also get it by

    % get handle to scattergroup object
    h = get(gca,'children');
    

    If the image contains more than one graphic object (e.g., additional lines), the command findall maybe of help (again a suggestion by Jonas). With this command you can search for handles to graphic objects with specific properties:

    h = findall(gca,'marker','o')
    

    When you have a handle to the scattergroup, you can change the properties of the marker by

    % change size of markers 
    set(h, 'sizedata', 50)
    

    To see a full list of scattergroup properties that can be changed use

    get(h)
    

    or for a GUI that shows the properties use

    inspect(h)
    

    If you just want to edit a single plot (i.e. no need for scripting), you can just edit the actual figure by clicking on the mouse button on the toolbar and then clicking on one marker in the plot (again suggested by Jonas). Then you right-click on the marker, select “Properties”, then you push the button “More properties”. In the UI that opens up you change the entry “sizeData” to a value of your choice.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to learn RegEx but don't have time to figure this out right
I just can't figure out how to do it, I have a full file
I have a text file and I need to search that file and figure
I have a list of timestamps in a text file. I want to figure
Just a quick question, I have a figure which contain an image and a
I have tried to figure this out and googled through a fair few stack
I have been trying to figure out a solution but nothing has really presented
I have been using WCF for a few years now and am fairly comfortable
I have a file with a bunch of strings that looks like this: new
I have a text file that I need to retrieve to populate a web

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.