[求助]如何将图形点坐标数据输出到excel中?
通过如下代码画图后(参数均已知),如何将图形点坐标数据输出到excel中,可否具体说明?谢谢!……
ip3 = [1 sort([ip ip2]) length(y5)];
for i = 1:length(ip3)-1
if mod(i,2)
c='g-';
hold on;
plot(x(ip3(i):ip3(i+1)),y5(ip3(i):ip3(i+1)),c;
plot(x(ip3(i):ip3(i+1)),y6(ip3(i):ip3(i+1)),c;
hold off;
end
end
……