Matlab: complex legends
이전 댓글 표시
Hi,
Could you please tell me if it is possible to do a complex legend by Matlab like the one attached below ?

Regards,
Mary
Update:
I managed to create something as following by fixing the number of columns to 2 and removing the text in the legend. Afterwards, I inserted text boxes. However, the distance shown by an arrow between the two columns is very big (the place where before the legends were annotated). Is there anyway to make that space smaller ?

댓글 수: 3
Rik
2021년 5월 18일
You might have more luck avoiding the legend function altogether and make your own using an axes object.
mary
2021년 5월 18일
Rik
2021년 5월 18일
The idea is to have a second axes with some line and text objects. I don't have a specific suggestion, so I would suggest you just try something. If you get stuck, feel free to post a comment.
답변 (1개)
plot(1:10,rand(1,10),'^-','color','r')
hold on
plot(1:10,rand(1,10),'o-','color','b')
legend
카테고리
도움말 센터 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
