involute_circle.sce Code:
// 高等数学 358页 // 画圆的渐伸线 involute of circle a=1; // 半径 t=linspace(0,2*%pi); x=a*(cos(t)+t.*sin(t)); y=a*(sin(t)-t.*cos(t)); plot2d(x,y); xtitle('圆的渐伸线'); // axis centered at (0,0) a=gca(); // Handle on axes entity a.x_location = "origin"; a.y_location = "origin";
3202

被折叠的 条评论
为什么被折叠?



