作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望创建一个带有 x 轴值的二维图:0, 10^-2, 10^-1, 10^0, 10^1, 10^2
.
我尝试使用 semilog(x),但这不起作用,因为 0 值被丢弃(可以理解)。
所以我使用 xticklabels
datalabels = {'0', '10^-2', '10^-1', '10^0', '10^1', '10^2'};
data = [1, 2, 3, 4, 5, 6];
plot(data);
set(gca(),"xticklabel", datalabels);
最佳答案
你试过了吗'10^{-2}'
来自 this reference :
Finally, the superscript and subscripting can be controlled with the '^' and '' characters. If the '^' or '' is followed by a { character, then all of the block surrounded by the { } pair is super- or sub-scripted. Without the { } pair, only the character immediately following the '^' or '_' is super- or sub-scripted.
关于octave - 如何将负指数显示为上标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8902809/
我是一名优秀的程序员,十分优秀!