フィルターのクリア

add image to legend label

12 ビュー (過去 30 日間)
Thales
Thales 2023 年 5 月 16 日
回答済み: Image Analyst 2023 年 5 月 16 日
Question is simple. Given a chart with two or more lines, as in:
How to add an image to the legend, instead of a label?
plot(rand(2))
legend('image1','image2')
The above creates the legend with the text labels image1 and image2. Instead of writing something, I want to identify each curve with a different figure. Is it possible?

回答 (2 件)

Matt J
Matt J 2023 年 5 月 16 日
編集済み: Matt J 2023 年 5 月 16 日
The easiest way I can think of is to make several subplot axes, including one containing the line plot
subplot(1,2,1); plot(1:5);
ax=subplot(1,2,2);
Then you can manually drag and resize the empty axes and place them overtop the axes with the line plot. Then you can use the axes handles to fill the mini-axes with some image, e.g.,
imagesc(ax,imread('cameraman.tif')); axis(ax,'off')

Image Analyst
Image Analyst 2023 年 5 月 16 日

カテゴリ

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