Changing the refline name in the legend
조회 수: 6 (최근 30일)
이전 댓글 표시
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.

댓글 수: 0
답변 (1개)
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
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 Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!