create a line between two points on an already made plot
    3 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Dimitris Arapidis
 le 5 Sep 2013
  
    
    
    
    
    Réponse apportée : Abhishekkumar Shingala
 le 29 Déc 2020
            I have matrices x and y and make a plot with them. x=[0,...,85.8024]; (100 numbers) y=[0.8736,...,1.2157];(100 numbers) figure plot(x,y)
i want to create a line from A=(0,0.8736) to B=(85.8024,1.2157) on the same plot (red color).
0 commentaires
Réponse acceptée
  Azzi Abdelmalek
      
      
 le 5 Sep 2013
        add
hold on
plot([0 85.8024],[0.8736 1.2157],'r')
2 commentaires
  Adam Fitchett
 le 23 Oct 2019
				
      Modifié(e) : Adam Fitchett
 le 23 Oct 2019
  
			Hi, I know this is a long time after the reply was written, but...
I tried this method and it drew the line between the two points, but after the second point the line veers at a seemingly random angle and then goes off into the distance. How do you draw the line so that it is just between the two points and doesn’t carry on after?
Plus de réponses (1)
  Abhishekkumar Shingala
 le 29 Déc 2020
        Can we create smooth line (curve) between two points?
0 commentaires
Voir également
Catégories
				En savoir plus sur Line Plots 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!