plotting 2 graphs on the same axes

I have to plot an x-y equation and also a data set of x,y coordinates on the same axes, but i cant figure out how to have them on the same graph. Help!

 Respuesta aceptada

Más respuestas (1)

KSSV
KSSV el 21 de Oct. de 2020
Read about hold on.
plot(rand(1,10))
hold on
plot(rand(1,10))

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Productos

Etiquetas

Preguntada:

el 21 de Oct. de 2020

Respondida:

el 21 de Oct. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by