Contour plot and line plot
4 views (last 30 days)
Show older comments
Hello,
how do I recreate this image, which I found on one of the functions in the file exchange server. I know how to generate the contour, but not how to include the line plots in the x- and y- axes.
Thank you

0 Comments
Accepted Answer
dpb
on 12 Oct 2022
Edited: dpb
on 12 Oct 2022
Is there not the code with the FEX submission that generated the image? That'd seem to be the first place to start.
But, it really isn't that hard to get started; the axes starting point can be created as
hAx(1)=subplot(3,3,[1 2]);
hAx(2)=subplot(3,3,[4 5 7 8]);
hAx(3)=subplot(3,3,[6 9]);
box(hAx,'on')
axis(hAx(2),"square")
hAx(1).Position= hAx(1).Position+[0.05 0 -0.10 0];
hAx(3).Position= hAx(3).Position+[0.0 0 -0.05 0];
0 Comments
More Answers (0)
See Also
Categories
Find more on Contour 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!