matlab工程分析第六次作业
习题6.1% Archimedean spiral
phi = linspace(0, 6*pi, 200);
x = phi.*cos(phi);
y = phi.*sin(phi);
plot(x,
2017-11-15