英语
2011数学建模A题的三维空间分布图怎么画?带上程序.

2019-05-23

2011数学建模A题的三维空间分布图怎么画?带上程序.
优质解答
x=data(:,1);
y=data(:,2);
z=data(:,12);
for i=1:319
if data(i,5)==1
plot(x(i),y(i),'*')
else
if data(i,5)==2
plot(x(i),y(i),'+')
else
if data(i,5)==3
plot(x(i),y(i),'x')
else
if data(i,5)==4
plot(x(i),y(i),'o')
else
plot(x(i),y(i),'p')
end
hold on
end
end
end
end
x=data(:,1);
y=data(:,2);
z=data(:,12);
for i=1:319
if data(i,5)==1
plot(x(i),y(i),'*')
else
if data(i,5)==2
plot(x(i),y(i),'+')
else
if data(i,5)==3
plot(x(i),y(i),'x')
else
if data(i,5)==4
plot(x(i),y(i),'o')
else
plot(x(i),y(i),'p')
end
hold on
end
end
end
end
相关标签: 数学 建模 三维空间 带上 程序
相关问答