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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:17:28+00:00 2026-05-27T12:17:28+00:00

I have some data that I want to plot in MATLAB. The data consists

  • 0

I have some data that I want to plot in MATLAB. The data consists of x and y coordinates of the points that I want. At the moment, I am using the plot function to plot these points.

The data has a lot of points with the same coordinates. Now, what I want is that points with the same coordinates do not plot as a single dot, but a thicker dot.

For example, suppose the points are

1,1

2,1

2,1

3,2

2,1

2,1

1,1

Then, the plot should have a single dot at 3,2, but a thicker dot at 1,1 and even a thicker dot at 2,1

Can someone tell me how to do this?

  • 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-05-27T12:17:28+00:00Added an answer on May 27, 2026 at 12:17 pm

    You can use a bit of creativity and the scatter function to do this.

    First, you need to reduce your data to a list of points, plus a count of the number of points at each location.

    For example if you have some data:

    xy = [...
        1,1; ...
        2,1; ...
        2,1; ...
        3,2; ...
        2,1; ...
        2,1; ...
        1,1];
    

    Get the unique points, and the unique indexes:

    [xyUnique, ignore, ixs] = unique(xy,'rows')
    

    This is pretty painful, but we can count the number of occurrences of each unique row using the ixs vector (there is probably a better way).

    counts = zeros(size(xyUnique,1),1);
    for ix = 1:size(counts,1);
        counts(ix) = sum(ixs == ix);
    end
    

    Now use scatter to make a plot as you want

    scatter(...
        xyUnique(:,1), ...  %X values
        xyUnique(:,2), ...  %Y values
        counts*20, ...      %Individual marker sizes, note scale factor to make this visible
        'b', ...            %Marker colors
        'filled');          %I think these look better filled 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some data generated in MATLAB that I want to process using Perl.
I have some data that has various attributes and I want to hierarchically group
I'm using Python and I have some data that I want to put into
I have some data that I want to store somewhere in my Rails app
I have some data. I want to go through that data and change cells
I have a JTable that I want to use to display some data (a
I have a controller with that I want to pass off some data to
I have some survey data that I want to describe by political party and
I'm working on a project where I have some hierarchical data that I want
I have some data in CSV format that I want to pull into an

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.