Why Isn’t One of Plots Shown?
Show older comments
I have some questions regarding the code below
hax1 = axes('OuterPosition', [0 0 0.5 0.5]);
hax2 = axes('OuterPosition', [0.5 0.5 0.5 0.5]);
p1 = plot(1:10,rand(1,10), 'Color', 'b', 'parent', hax1)
hold on
p2 = plot(1:10,rand(1,10), 'Color', 'r', 'parent', hax1)
- Why isn’t p1 shown in hax1, although hold is on and both belong to hax1?
- How can I show both p1 and p2 on hax1? (I want to have p1 and p2 in separate lines and not in one line together (i.e., plot(x1,y1,x23) ,y2))
- Is there any way to specify a plot’s parent before plotting it? In the code above, I specified plots parents after entering the x and y coordinates, but I first want to specify plots parents and then later specify plots coordinates.
Accepted Answer
More Answers (0)
Categories
Find more on Line 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!