How do I plot two different functions on the same plot?

1 view (last 30 days)
What format do I need to write the code in to plot both of these functions on the same plot?

Accepted Answer

Torsten
Torsten on 11 Mar 2023
Use
hold on
plot(...) % plot first graph
plot(...) % plot second graph
hold off

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!