将 matlab 中的极坐标图中的轴更改为弧度
Change axis in polar plots in matlab to radians
所以 matlab 正确地将弧度用于三角函数和极坐标图的实际绘图。不管多么烦人,它以度数表示 angular 轴,有什么办法可以改变它吗?
表示 angular 值的文本对象由 polar
函数在其代码的以下部分 (Matlab R2010b) 中创建:
% annotate spokes in degrees
rt = 1.1 * rmax;
for i = 1 : length(th)
text(rt * cst(i), rt * snt(i), int2str(i * 30),...
'HorizontalAlignment', 'center', ...
'HandleVisibility', 'off', 'Parent', cax);
if i == length(th)
loc = int2str(0);
else
loc = int2str(180 + i * 30);
end
text(-rt * cst(i), -rt * snt(i), loc, 'HorizontalAlignment', 'center', ...
'HandleVisibility', 'off', 'Parent', cax);
end
由于代码将 'HandleVisibility'
设置为 'off'
,这些文本对象在函数外部不可见,因此您无法修改它们的 'String'
属性.
您可以创建 polar
的 修改版本(用不同的名称保存在用户文件夹中),其中上面的部分替换为:
% annotate spokes in degrees
rt = 1.13 * rmax;
text_strings = {'\pi/6' '\pi/3' '\pi/2' '2\pi/3' '5\pi/6' '\pi' ...
'7\pi/6' '4\pi/3' '3\pi/2' '5\pi/3' '11\pi/6' '0'};
for i = 1 : length(th)
text(rt * cst(i), rt * snt(i), text_strings{i}, ...
'HorizontalAlignment', 'center', ...
'HandleVisibility', 'off', 'Parent', cax);
text(-rt * cst(i), -rt * snt(i), text_strings{i+6}, ...
'HorizontalAlignment', 'center', ...
'HandleVisibility', 'off', 'Parent', cax);
end
对该代码的评论:
- 也许您更喜欢在不简化分数的情况下定义
text_strings
(即 '2\pi/6'
而不是 '\pi/3'
等)。
- 第一行的
1.13
(原来是1.1
)被微调以匹配字符串的长度。如果您使用不同的字符串 ,您可能需要更改该值
这是一个示例结果(我调用了修改后的函数 polar_rad.m
):
theta = 0:.01:2*pi;
rho = sin(theta).^2;
polar_rad(theta, rho)
所以 matlab 正确地将弧度用于三角函数和极坐标图的实际绘图。不管多么烦人,它以度数表示 angular 轴,有什么办法可以改变它吗?
表示 angular 值的文本对象由 polar
函数在其代码的以下部分 (Matlab R2010b) 中创建:
% annotate spokes in degrees
rt = 1.1 * rmax;
for i = 1 : length(th)
text(rt * cst(i), rt * snt(i), int2str(i * 30),...
'HorizontalAlignment', 'center', ...
'HandleVisibility', 'off', 'Parent', cax);
if i == length(th)
loc = int2str(0);
else
loc = int2str(180 + i * 30);
end
text(-rt * cst(i), -rt * snt(i), loc, 'HorizontalAlignment', 'center', ...
'HandleVisibility', 'off', 'Parent', cax);
end
由于代码将 'HandleVisibility'
设置为 'off'
,这些文本对象在函数外部不可见,因此您无法修改它们的 'String'
属性.
您可以创建 polar
的 修改版本(用不同的名称保存在用户文件夹中),其中上面的部分替换为:
% annotate spokes in degrees
rt = 1.13 * rmax;
text_strings = {'\pi/6' '\pi/3' '\pi/2' '2\pi/3' '5\pi/6' '\pi' ...
'7\pi/6' '4\pi/3' '3\pi/2' '5\pi/3' '11\pi/6' '0'};
for i = 1 : length(th)
text(rt * cst(i), rt * snt(i), text_strings{i}, ...
'HorizontalAlignment', 'center', ...
'HandleVisibility', 'off', 'Parent', cax);
text(-rt * cst(i), -rt * snt(i), text_strings{i+6}, ...
'HorizontalAlignment', 'center', ...
'HandleVisibility', 'off', 'Parent', cax);
end
对该代码的评论:
- 也许您更喜欢在不简化分数的情况下定义
text_strings
(即'2\pi/6'
而不是'\pi/3'
等)。 - 第一行的
1.13
(原来是1.1
)被微调以匹配字符串的长度。如果您使用不同的字符串 ,您可能需要更改该值
这是一个示例结果(我调用了修改后的函数 polar_rad.m
):
theta = 0:.01:2*pi;
rho = sin(theta).^2;
polar_rad(theta, rho)