Organizing different plots of main effects plot (DOE) for different response variables inside the same Figure window.
조회 수: 4 (최근 30일)
이전 댓글 표시
I am trying to organize the plot resulting from maineffectsplot into a subplot array inside the same window, where each row would be the plot for each response variable. For example:
subplot(3,1,1)
maineffectsplot(response1,X1, .....)
subplot(3,1,2)
maineffectsplot(response2,X1, ....)
.....
It is not working as I know the maineffectsplot function contains subplots inside, and as far as I know doing a subplot inside a subplot is not possible. Any clue to fix this up?
댓글 수: 0
답변 (1개)
Roshni Garnayak
2019년 8월 20일
The “maineffectsplot” creates subplots depending on the number od ‘GROUP’ variables. Since it creates handles for the subplots, the subplots declared by you are overridden.
If you want to get all the plots in a single figure, you can plot them manually. You can also use ‘plotmatrix’ function.
For details about the ‘plotmatrix’ function, refer the following link:
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!