how can I give arrow to a particular color in MATLAB?
    10 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
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 commentaires
Réponses (1)
  Image Analyst
      
      
 le 21 Jan 2023
        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 commentaires
Voir également
Catégories
				En savoir plus sur Vector Fields dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



