plot within a for loop and if statment
显示 更早的评论
i have this data of wells, where in the first column i need to sort out all the 1's in that coulmn and plot the x,y,z corresponding to that row where the 1 is. this is the code i have
b=sum(a==1);
hold on
for n=1:221
if a(n)==1
;
plot3(xTop(n),yTop(n),1:b:0'k-')
n=n+1;
end
end
the coulmn is 221 rows long and i have the vaiables for the x and y shown but the z needs to go from 1 to 0 and i cant get the legth right or something?? if this is confusing ask me more questions thank you
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!