subplot for 'controlchart' function
4 views (last 30 days)
Show older comments
Hello,, I was wondering if somebody knows how to subplot with the 'controlchart' function , apparently the normal routine .. subplot(2,2,1) etc, doesn’t work. Thanks
0 Comments
Accepted Answer
Walter Roberson
on 9 Apr 2021
Use the 'parent' option
ax(1) = subplot(2,1,1);
plot(ax(1), rand(1,20));
ax(2) = subplot(2,1,2);
load parts
st = controlchart(runout,'chart',{'xbar'}, 'Parent', ax(2));
Note: when you use 'Parent', you can only 'chart' one chart at a time, because when you ask to chart multiple items, it needs to create subplots.
More Answers (1)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!