how can I give arrow to a particular color in MATLAB?
9 ビュー (過去 30 日間)
古いコメントを表示
I have this image

I want to plot the arrow with the color bar, let suppose there is blue colour only so that denote this blue color by an up arrow at a particular direction.

like this, can I do this in matlab?
0 件のコメント
回答 (1 件)
Image Analyst
2023 年 1 月 21 日
figure
plot(1:10)
x = [0.3 0.5];
y = [0.6 0.5];
annotation('textarrow',x,y,'String','y = x ', 'Color', 'b', 'LineWidth', 3)
6 件のコメント
参考
カテゴリ
Help Center および File Exchange で Vector Fields についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!