Effacer les filtres
Effacer les filtres

how to plot multiple curves in the same figure

161 vues (au cours des 30 derniers jours)
lakom Mariem
lakom Mariem le 31 Oct 2017
Modifié(e) : geofo le 3 Déc 2021
Hello everyone I'm new in matlab and I want to know how can I plot multiple curves in the same figure knowing that every single curve has it's own expression(function).Do I have to write the code for every single function in has own file?? any idea please and thanks

Réponse acceptée

KSSV
KSSV le 31 Oct 2017
Modifié(e) : KSSV le 31 Oct 2017
Use hold on
figure
hold on
plot(rand(10,1),'r')
plot(rand(10,1),'b')
plot(rand(10,1),'g')
legend('data1','data2','data3')

Plus de réponses (2)

M
M le 31 Oct 2017
Have a look at the hold on function

geofo
geofo le 3 Déc 2021
Modifié(e) : geofo le 3 Déc 2021
plot([rand(10,1), rand(10,1), rand(10,1)])
legend('data1','data2','data3')
Use colororder before calling plot to have your prefered colors.
The vectors v1, v2, v3, in plot([v1, v2, v3]) must be column vectors, all with the same dimension

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by