How to adjust the accuracy in graphs ?

2 ビュー (過去 30 日間)
Imene Yed
Imene Yed 2021 年 6 月 26 日
コメント済み: Imene Yed 2021 年 6 月 27 日
Hi,I plot a graph ,I Wan to display on the graph on each (X,Y) couple, the real value of X ,I mean for exemple my data is like X=388.234565 ,
in the graph matlab just display the first number after the comma 388.2 which decrease the accuracy of my analysis .is it possible to dissplay the real values of X with several numbers after comma.

採用された回答

Chunru
Chunru 2021 年 6 月 26 日
h = plot(rand(10,1));
h.DataTipTemplate.DataTipRows(1).Format = '%.6f'; % first line of datatip
datatip (h,'DataIndex',3); % datatip at 3rd point
  1 件のコメント
Imene Yed
Imene Yed 2021 年 6 月 27 日
thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by