Changing the refline name in the legend

35 ビュー (過去 30 日間)
Truman Cassady
Truman Cassady 2019 年 2 月 20 日
コメント済み: Star Strider 2019 年 2 月 20 日
The refline is in the legend but I cannot change its name when writing the legend function. I tried
(refline.Name = 'reference') but that does not exist.
This documentation relates exactly to my issue. The line name corresponds to "dataN." Maybe this would help.
legendName.JPG

回答 (1 件)

Star Strider
Star Strider 2019 年 2 月 20 日
Try this:
figure
scatter(rand(1,10), rand(1,10), 's', 'DisplayName','Validation')
hold on
scatter(rand(1,10), rand(1,10), 'p', 'DisplayName','Calibration')
rl = refline
hold off
hl = legend
hl.String{3} = 'Validation Reference Line';
hl.String{4} = 'Calibration Reference Line';
  2 件のコメント
Truman Cassady
Truman Cassady 2019 年 2 月 20 日
Thank you!
I tried this but the scatter function does not produce a line and I it is requried that I label my curves with different colors.
Star Strider
Star Strider 2019 年 2 月 20 日
My pleasure!
You did not post your code, so I have no idea what the problem is with it, or what your constraints are.

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

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by