Matlab XTickLabels 警告
Matlab XTickLabels warning
我在 Matlab 2014b 中有一个简单的绘图。例如:
b1 = bar(1:12, rand(12,1));
ax1 = gca;
使用XTickLabels时弹出如下警告信息属性:
xticklabels = ax1.XTickLabels;
Warning: The XTickLabels property will be removed in a future release.
此时首选属性使用什么?
正确的 属性 是 XTickLabel
而不是 XTickLabels
。
我在 Matlab 2014b 中有一个简单的绘图。例如:
b1 = bar(1:12, rand(12,1));
ax1 = gca;
使用XTickLabels时弹出如下警告信息属性:
xticklabels = ax1.XTickLabels;
Warning: The XTickLabels property will be removed in a future release.
此时首选属性使用什么?
正确的 属性 是 XTickLabel
而不是 XTickLabels
。