フィルターのクリア

How to label points on a plot based on the data in table (not based on the number of points)?

2 ビュー (過去 30 日間)
Hi! I have a question regarding labelling points in matlab. I have a figure which needs to be labelled based on the data in the table. I read the example of labelling, but it mostly label based on the number of the points, not the data itself. I attach the picture of the figure and their corresponding label. The 'sampling point' should be labelled based on the data in LabelSamplPoint in cell 16 (I attach the picture of the table). I am confused about how to put the data in cell 16 as the label to the points in the plot. The point itself is from cell 15 for y-axis and the x-axis is cell 1. Could you please help me? Thank you very much for your help.

採用された回答

Walter Roberson
Walter Roberson 2017 年 11 月 3 日
mask = ~isnan(finalCSVnew.LabelSamplPoint);
xvals = finalCSVnew{mask, 1}; %assuming you are right
yvals = finalCSVnew{mask, 15}; %are you sure?? This appears to be SamplError not a y value
labvals = FinalCSVnew.LabelSamplPoint(mask);
text(xvals, yvals, labvals)
  3 件のコメント
Walter Roberson
Walter Roberson 2017 年 11 月 3 日
labvals = sprintfc('%g', finalCSVnew.LabelSamplPoint(mask));
Kasih Ditaningtyas Sari Pratiwi
Kasih Ditaningtyas Sari Pratiwi 2017 年 11 月 4 日
It works! Thank you so much Walter!

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

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by