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.
我正在使用
bar3(...)
Matlab (R2018b) 中的命令来创建 3D 条形图。在普通绘图(例如 surf(...) 或 plot(...))中,当我将光标悬停在值上时,我会获得有关值的信息。不知何故,与 bar3 情节它不工作。我已经尝试过:
datacursormode on
它不起作用。有人有想法吗?这是一个最小的工作示例:
load count.dat Z = count(1:10,:); figure bar3(Z)