The Data Tip Text Update Function

3 次查看(过去 30 天)
pos = get(event_obj,'Position');
x = pos(1); y = pos(2);
output_txt = {['Y: ',num2str(y,4)]};
is straight out of the documentation, but for the life of me i can not figure how to get the following to work:
output_txt{end+1} = {['X: ',num2str(x,4)]};
i have tried all sort of things to num2str(x,???) to no avail. any insight is appreciated.

采纳的回答

Fangjun Jiang
Fangjun Jiang 2011-6-28
I think it should be:
output_txt{end+1} = ['X: ',num2str(x,4)];
  1 个评论
ruprecht precht
ruprecht precht 2011-6-28
you are amazing. i can see now that the fist out_txt is the only one with {} because of the {end+1}. thanks so much.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Array Geometries and Analysis 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by