How to combine two plotted graphs in one graph to compare the results?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
vyshnavi Nagireddy
il 8 Feb 2018
Commentato: Mohammad Yusuf Akhtar
il 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 Commenti
Risposta accettata
Birdman
il 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!