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.
如何在 matlab 绘图上以编程方式显示数据提示消息,只需单击鼠标,而不使用Data Cursor,以在不同位置显示自定义消息,如下所示:
Data Cursor
“你不能。” 从功能帮助页面的“提示”部分datacursormode:
datacursormode
您只能通过单击图表上的数据对象来放置数据提示。您不能以编程方式放置它们(通过执行代码来定位数据游标)。
但是人们确实通过黑客来实现这一点,就像这里一样。他们正在做的事情的简短版本是
h = ezplot('sin(x)') cursorMode = datacursormode(gcf); hDatatip = cursorMode.createDatatip(h);