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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:05:43+00:00 2026-05-26T18:05:43+00:00

I would like to plot connected points in MATLAB. My connected points come from

  • 0

I would like to plot connected points in MATLAB.

My connected points come from connecting objects of “stats”, where each “stat” comes from a BW regionprops struct.

The code I have written works, but it suffers from a lot of “ugliness”, which I couldnt fix even after trying various ways.

function plot_line( line )

a = cell2mat(line);
b = {a.Centroid};

matx = {};
maty = {};

for i = 1:size(b,2)
    matx{end+1} = b{i}(1);
    maty{end+1} = b{i}(2);
end

plot ( cell2mat(matx), cell2mat(maty) );

end

Can you help me make this code nicer? It’s not critical, as my code works fine and as the lines are short (<100 points) the performance is not an issue.

It is just that it would be really nice to know how this tiny function should be written in the proper way, without for loops and 3 calls of cell2mat.

In my example:

  • line is a <1xn cell>,
  • line{1} has a property 'Centroid' and
  • line{i}.Centroid(1) are the x coordinates and
  • line{i}.Centroid(2) are the y coordinates.

Actually, all I need is plotting line{i}.Centroid(1), line{i}.Centroid(2) for i = 1:size(line,2), but I don’t know how.

  • 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-26T18:05:44+00:00Added an answer on May 26, 2026 at 6:05 pm

    Example:

    line = repmat({struct('Centroid',[1 2])},1,5);   %# similar to the data you have
    
    %# extract x/y coordinates
    x = cellfun(@(s)s.Centroid(1),line)
    y = cellfun(@(s)s.Centroid(2),line)
    
    %# plot
    plot(x,y)
    

    You could also do it as:

    xy = cell2mat(cellfun(@(s)s.Centroid, line, 'UniformOutput',false)');
    plot(xy(:,1),xy(:,2))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to plot points in two dimensional fashion (each have an x
I would like to plot results from a MDS analysis with 3 dimensions using
I would like to plot the greasy test signal in Matlab, and then plot
I would like to plot the shifted logistic function as shown from Wolfram Alpha
i would like to plot the following three functions in MATLAB using ezplot() but
Possible Duplicate: matlab - variable in plot title I would like to quote the
I have to plot some plot(x,y) scatters, but i would like the points to
I would like to plot discrete values in MATLAB like this: stairs() and stem()
I would like to plot a vertical line (I'd prefer any orientation, but I'd
I would like to plot implicit equations (of the form f(x, y)=g(x, y) eg.

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.