Question on a scatter plot

2 Ansichten (letzte 30 Tage)
Michael
Michael am 21 Okt. 2013
Kommentiert: Image Analyst am 21 Okt. 2013
I did a bunch of searching but to no avail.
I am trying to make a plot with x and a corresponding y value (this is the easy part)
I want to include a 3rd value (which in my case is a corresponding RSM) And I want to make the lower values be one color, and gradually go to a different color for different values. So for every point on the plot, it has a color, darker being a low (or high) RMS value, and lighter being a high (or low) RMS.
I have tried gscatter, but I can't make it look like I need.
gscatter(x,y,RMS)
Thanks

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 21 Okt. 2013
pointsize = 10;
scatter(x(:), y(:), pointsize, RMS(:));
No need to scale the color to 0-255 range.
  1 Kommentar
Image Analyst
Image Analyst am 21 Okt. 2013
You're right - I didn't know about that option.
If C is a three column matrix with the number of rows in C equal to the length of X and Y,then each row of C specifies an RGB color value for the corresponding circle.
If C is a vector with length equal to the length of X and Y, then the values in C are linearly mapped to the colors in the current colormap.
I was talking about the first one and you brought up the second option, which I didn't know about but looks simpler.
x = 1:100; % Example
y = 1:100;
RMS = 1:100;
pointsize = 50;
scatter(x(:), y(:), pointsize, RMS(:));

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Image Analyst
Image Analyst am 21 Okt. 2013
Scatter() takes arrays where you can define the size and color of the markers. Did you try to set them to something?
  2 Kommentare
Michael
Michael am 21 Okt. 2013
There is 100 points in plot that I am trying to generate. The X and Y parts are largely linear, the RMS values are not.
Wouldn't going on each point specifying a color be overly tedious?
Image Analyst
Image Analyst am 21 Okt. 2013
Bearbeitet: Image Analyst am 21 Okt. 2013
Not if you do it correctly. Convert each value into a number from 0-255 where your min value is 0 and your max value is 255, for example using mat2gray() if you have the Image Processing Toolbox or manually if you don't. Then set each color in the colormap that you pass in to scatter() equal to the color from that row of a standard colormap like jet(255) so your min values will look blue and your max values will look red and in between values will be in between colors of the rainbow. You can use a simple for loop for that. I'll code it up later tonight when I have more time.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by