在MATLAB中,坐标轴负数默认符号是 - ,如下图所示
x = 1:1:50;
y = sin(x);
plot(x,y)
可通过以下两语句将负号修改为减号:
set(gca,'defaultAxesTickLabelInterpreter','latex');
yticklabels(strrep(yticklabels,'-','$-$'));
或者
set(gca, 'TickLabelInterpreter', 'latex')
ytickformat('$%g$')
示例:
x = 1:1:50;
y = sin(x);
plot(x,y)
set(gca,'defaultAxesTickLabelInterpreter','latex');
yticklabels(strrep(yticklabels,'-','$-$'));
文章来源:https://www.toymoban.com/news/detail-656565.html
x = 1:1:50;
y = sin(x);
plot(x,y)
set(gca, 'TickLabelInterpreter', 'latex')
ytickformat('$%g$')
文章来源地址https://www.toymoban.com/news/detail-656565.html
参考链接:change the hyphen (-) into minus sign (−, “U+2212”)
到了这里,关于Matlab图坐标轴数值负号改为减号(change the hyphen (-) into minus sign (−, “U+2212”))的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!