Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在我的下方获得一排标签xticklabel?即患者 1、2 3 4?
xticklabel
这显示了如何获取分组标签,但我无法完全解决此示例: 如何在 MATLAB 中调整 3-D 条形分组和 y 轴标签?
对于您的情况,该函数的用法text()如下:
text()
text(3,-.1,'Patient1'); text(10,-.1,'Patient2');
第一个数字是以轴为单位的 x 坐标,第二个数字是 y 坐标。因此,减号表示文本的位置在轴下方。