how to create one plot with several contours (corner plot)
조회 수: 1(최근 30일)
표시 이전 댓글
I have contours created by several matrices.
I need to arrange them in that manner:

How can I do so? (of course I already have the matrices and each contour seperatley )
답변(1개)
Adam Danz
2022년 4월 8일
tcl = tiledlayout(3,3,'TileSpacing','none');
tileIdx = [1,4,5,7,8,9]; % row-wise index of tiles
ax = gobjects(size(tileIdx));
for i = 1:numel(tileIdx)
ax(i) = nexttile(tcl,tileIdx(i));
contour(ax(i), magic(8))
end
% equate axis ranges and turn off tick labels for inner axes
linkaxes(ax)
set(ax(3),'YTickLabel',[],'XTickLabel',[])
set(ax(5:6),'YTickLabel',[])
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!