how can I plot the .jpg into a different part of an axis
2 ビュー (過去 30 日間)
古いコメントを表示
回答 (1 件)
Rik
2023 年 9 月 25 日
編集済み: Rik
2023 年 9 月 25 日
You can use the image function to insert an image object in an axes.
Below you see an example. As you can see, you will have to flip the y-axis on the image yourself.
im = imread('peppers.png');
plot(1:10,rand(10,1))
axis([1 10 0 1])
hold on
x=linspace(2,4,size(im,1));
y=linspace(0.2,0.5,size(im,2));
image(x,y,im)
2 件のコメント
Rik
2023 年 9 月 25 日
How did you try to adapt my example code? It doesn't sound like you should have any issues. What exactly is your question?
参考
カテゴリ
Help Center および File Exchange で Red についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!