根据索引编号在matlab三维散点图中逐行连接

时间:2016-12-13 09:09:07

标签: matlab 3d visualization scatter-plot

我需要根据索引号在matlab三维散点图中逐行连接。到目前为止,我到了这个州

data = importdata('2.txt');
x = data (:,1);
y = data (:,2);
z = data (:,3);
MarkerSize = 50;
SizeVector = repmat(MarkerSize ,length(x),1);
ColorVector = summer(length(x));
h = scatter3(x,y,z,SizeVector,ColorVector,'filled');
view(-30,10)

enter image description here

P.S。 这个程序对我来说是新的。

1 个答案:

答案 0 :(得分:0)

我不确定我是否得到了这个问题。不是line你在寻找什么?

x=[1 2 3];%let's say
y=[1 3 2];
z=[1 2 3];

figure;hold on
plot3(x,y,z)
line(x,y,z)%this links the dots in the order specified in when defining x,y and z