Increasing datatip display precision (MATLAB 2019a)

조회 수: 332 (최근 30일)
Ni Made Ayu Sinta Dewi
Ni Made Ayu Sinta Dewi 2021년 7월 4일
댓글: Sanika Baste 2023년 5월 2일
Help! I want to increase the datatip display precision. How do I do this? Is it possible to do this automatically for all datatips?
If that is not possible, is there a way to at least make the datatip display the same level of precision (show the same number of digits after the decimal point)? In my case (photo attached), the datatip is not showing zeros. I want these datatips to show 0,25220 and 0,80351.
Thank you in advance.
  댓글 수: 3
Peter O
Peter O 2021년 7월 5일
Here's the walkthrough for the (older) programmatic way to do it:
First, you create a data cursor mode object for the figure and override the default callback function for its update. You can then give it a text string back for custom display. Return as a set of cell strings to get multiple rows.
% Script
plot(1:10,cos(1:10))
dcm = datacursormode(gcf);
dcm.Enable='on';
dcm.UpdateFcn = @threeRows;
% Separate File: threeRows.m
function txt = threeRows(~, info)
x = info.Position(1);
y = info.Position(2);
txt = [{num2str(x);num2str(y);num2str(x^2+y^2)}];
end
In later versions you can use the datatip textrow for formatting control: https://www.mathworks.com/help/matlab/ref/matlab.graphics.datatip.datatiptextrow.html
Ni Made Ayu Sinta Dewi
Ni Made Ayu Sinta Dewi 2021년 7월 6일
Thank you so much!

댓글을 달려면 로그인하십시오.

채택된 답변

Peter O
Peter O 2021년 7월 4일
Quick and dirty way (works in 2021, I think should still work in 2019):
  1. Create a data tip and right-click on it. Edit content and style.
  2. You'll see a popover that has "DataTipRows". Click that and then click the field you want to adjust. Format is set to AUTO.
  3. Type in the precision you want into that field using MATLAB's standard nomenclature, so for 5 spaces and 3 decimal points as a float: %5.3f
  4. This will affect the datatips globally on a plot. If you set the decimal precision then the requisite number of zeros should appear.
There's also a programmatic way, which is the backdoor to that and just involves a few function calls. Let me know if you need that and I can dig it up. I've used it in the past to add things like a third row to display an index or identifier of a data point (helpful for image processing and pareto plot point identification)
  댓글 수: 2
Ni Made Ayu Sinta Dewi
Ni Made Ayu Sinta Dewi 2021년 7월 4일
This worked, but I would like to learn the function call that you mentioned as well. Thank you in advance!
Sanika Baste
Sanika Baste 2023년 5월 2일
Super helpful... thanks :D

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Mike
Mike 2021년 9월 29일
Peter O's approach can be implemented programatically by modifying the DataTipTemplate.
For example:
p = plot(x,y);
p.DataTipTemplate.DataTipRows(1).Format = '%g'; % x
p.DataTipTemplate.DataTipRows(2).Format = '%g'; % y

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 7월 4일
That would be easier to round up your plotted data using round(data, Ndd), e.g.:
X=round(x, 5); Y=round(Y,5); plot...
% Then your datatip shows 5 cdd

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by