MATLAB: Line graphs and Scatter plots

graphingline graphsMATLABscatterplots

Is there a way to add a line graph to a scatter plot graph if they have differing equations?

Best Answer

Hello,
The command 'hold on' will retain the existing plots on axes.
scatter()
hold on
plot()
Related Question