Plot using scatter3 function.

1 次查看(过去 30 天)
Pramod Bhat
Pramod Bhat 2012-2-8
编辑: Jan 2013-10-7
Hai friends, I have to plot a graph using scatter3 function. i have 3 variables x,y and z with 24 elements in each. I want 3 variables to be shown in different colors on the plot. How can i do this ? I tried to do this by specifying s and c as explained in help. but could not understand. Thanq-)

回答(3 个)

Jiro Doke
Jiro Doke 2012-2-10
Is this what you're looking for?
x = rand(1,24);
y = rand(1,24);
z = rand(1,24);
sz = 40;
colors = jet(24);
scatter3(x, y, z, sz, colors, 'filled')
colorbar('YTick', linspace(0, 1, 24), 'YTickLabel', 1:24)
The key is to create the "colors" variable that represent 24 different colors.
  2 个评论
Pramod Bhat
Pramod Bhat 2012-2-10
Hai...
I din't want each element to be shown in different colors. I wanted each variable to be shown in different colors on the same graph...plz help.
thanq...
Jiro Doke
Jiro Doke 2012-2-10
I'm reading through all the responses that you got and your comments, but I still don't understand what you want. When you plot x, y, z (each with 24 elements) using scatter3, you will get 24 points on the plot. When you say "different colors for each variable", how many different colors total do you want? Each point is created by x, y, z coordinates, so you can't have 3 colors for a single point. Maybe you can draw an example with paper and pencil (or a paint program) and show us a screenshot of it.

请先登录,再进行评论。


Kevin Holst
Kevin Holst 2012-2-8
It takes 3 variables to make a plot in scatter3, but if you mean you have 3 sets of x,y,z parameters then:
figure
hold on
scatter3(x1,y1,z1,'r.')
scatter3(x2,y2,z2,'bo')
scatter3(x3,y3,z3,'^g)
Which correspond to red dots, blue circles, and green upward facing triangles.
  3 个评论
Kevin Holst
Kevin Holst 2012-2-8
scatter3 uses 3 variables to make a single plot point, there's no way to make each component a different color because each component is not plotted individually.
Pramod Bhat
Pramod Bhat 2012-2-10
I had told that i wanted all three variables to be shown in different colors not each element. And the graph should be only one not 3 separate graph for each variable.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2012-2-9
scatter3(1:length(x), x, zeros(1,length(x)), 9, 'r');
scatter3(1:length(y), y, zeros(1,length(y)), 9, 'g');
scatter3(1:length(z), z, zeros(1,length(z)), 9, 'b');
The 9 is to use markers with an area of 9 points^2 (a "point" is approximately 1/72 of an inch in this context.)
  1 个评论
Pramod Bhat
Pramod Bhat 2012-2-10
hai...
thanks for your answer. But i wanted only one graph - not three graphs.
i want every variable to be plotted on the same graph with different color for each variable.
i.e each element of the variable shown in same color. like that 3-variables on the same graph.Plz help...

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by