(50分)matlab极坐标角度设定
(50分)matlab极坐标角度设定
日期:2021-11-17 12:02:47 人气:1
这两个命令的角度是定死的,没有提供任何接口去修改。
你一定要改,就只能改这两个命令的源代码了
打开polar.m后可以找到下面这段语句
% plot spokes
th = (1:6)*2*pi/12;
cst = cos(th); snt = sin(th);
cs = [-cst; cst];
sn = [-snt; snt];
line(rmax*cs,rmax*sn,'linestyle',l
你一定要改,就只能改这两个命令的源代码了
打开polar.m后可以找到下面这段语句
% plot spokes
th = (1:6)*2*pi/12;
cst = cos(th); snt = sin(th);
cs = [-cst; cst];
sn = [-snt; snt];
line(rmax*cs,rmax*sn,'linestyle',l