Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
795 views
in Technique[技术] by (71.8m points)

matlab - Plot (x,y,z) triplets over coordinates (x,y) with color z

I've got a list of points (x,y,z) and would like to visualize them as a curve on a plane with points on (x,y) and any of color/intensity/thickness as z. How can this be done in Matlab?

plot(x,y) gets the right shape, but I need the color to depend on z.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Assuming you don't care about the color of the actual line, but the markers. Use plot in combination with scatter.

Imagine following example data:

t = 0:pi/20:2*pi;
x = sin(t);
y = cos(t);
z = t;

plot3(x,y,z);

enter image description here

Plotted in the 2D-plane:

plot(x,y); hold on
scatter(x,y,300,z); hold off

results in:

enter image description here

From your comment: if you have enough data and you don't need the line, just use scatter, it's exactly what you need.


Another possibility inspired by a solution on MATLAB Central, considering both line and markers.

surface([x;x],[y;y],zeros(2,length(t)),[z;z],'EdgeColor','flat',...
        'Marker','o','MarkerSize',10,'MarkerFaceColor','flat');

enter image description here


Make the color dependent on z is quite easy, for changing marker sizes you definitely need the scatter function:

surface([x;x],[y;y],zeros(2,length(t)),[z;z],'EdgeColor','flat'); hold on
MarkerSize = round(z*1000)+1;
scatter(x,y,MarkerSize,z,'.','MarkerFaceColor','auto'); hold off

enter image description here

For on z depending, increasing transparency it's a little tricky. You can find a workaround here, using the patch function.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...