How to affix a horizontal subplot below a regular plot?
Show older comments
Summary is it. I want to have a regular plot directly above a subplot (horizontal, about half the vertical size of the top plot).
Accepted Answer
More Answers (1)
subplot(3,1,1:2); plot(rand(10,1))
subplot(3,1,3); plot(rand(10,1));
Categories
Find more on Subplots 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!

