how can I read the number in figure(matlab) without rounding?

8 ビュー (過去 30 日間)
SimTec
SimTec 2021 年 8 月 19 日
編集済み: Adam Danz 2021 年 8 月 19 日
here in the figure, you can see that i cannot read the difference between the values

採用された回答

Adam Danz
Adam Danz 2021 年 8 月 19 日
編集済み: Adam Danz 2021 年 8 月 19 日
This is a precision issue with datatips. See this answer to learn how to specify the level of precision in datatips.
Demo of method 2 from that link:
x = linspace(0,2*pi,100);
y = sin(x)*.0001 + 37.5;
ax = cla();
h = stairs(ax,x,y);
ax.XAxis.Exponent = 0;
% Modify datatip precision
h.DataTipTemplate.DataTipRows(2).Format = '%.5f'; % Y to 5dp
% Show datatip
datatip(h, h.XData(25), h.YData(25));
datatip(h, h.XData(47), h.YData(47));

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimulation, Tuning, and Visualization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by