Reputation: 125
I currently have a contour plot, just like this one here
now I want to add some simple plots of functions in the length width plane, like f(width) = width^n and so on, but I don't know how to overlap these two plots.
Upvotes: 0
Views: 709
Reputation: 1320
So, you want to retain the current graph when adding new graphs: use hold on
. See http://www.mathworks.nl/help/matlab/ref/hold.html.
Upvotes: 5