How to combine two plotted graphs in one graph to compare the results?
    4 views (last 30 days)
  
       Show older comments
    
    vyshnavi Nagireddy
 on 8 Feb 2018
  
    
    
    
    
    Commented: Mohammad Yusuf Akhtar
 on 9 Feb 2022
            Worked on two algorithms got the outputs for both. How can i combine the graphs in one such that i could compare the best algorithm among them using graphs.
0 Comments
Accepted Answer
  Birdman
      
      
 on 8 Feb 2018
        figure;hold on;grid on;
%calculations for your first data
plot(x1,y1,'-');
%calculations for your second data
plot(x2,y2,'o');
2 Comments
More Answers (0)
See Also
Categories
				Find more on 2-D and 3-D Plots in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

