Plotting functions in matlab

Réponses (1)

KSSV
KSSV le 7 Juin 2019
Modifié(e) : KSSV le 7 Juin 2019

1 vote

Use hold on while plotting.
figure
hold on
plot(rand(10,1)) ;
plot(rand(10,1)) ;
legend()
To see different types of plots possible in MATLAB refer:

Catégories

En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Centre d'aide et File Exchange

Produits

Tags

Question posée :

le 7 Juin 2019

Modifié(e) :

le 7 Juin 2019

Community Treasure Hunt

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

Start Hunting!

Translated by