How to plot large square subplot?

조회 수: 2 (최근 30일)
Mr. 206
Mr. 206 2018년 10월 11일
편집: Mr. 206 2018년 10월 11일
How can i plot such large square subplot along with a common Title? It would be helpful to have an example?

답변 (1개)

Image Analyst
Image Analyst 2018년 10월 11일
Set the 'Position' property of the individual axes to resize them.
You can use text() to place text, or use suplabel: https://www.mathworks.com/matlabcentral/fileexchange/7772-suplabel
  댓글 수: 3
Image Analyst
Image Analyst 2018년 10월 11일
% Create 4 subplots.
h1 = subplot(2, 2, 1);
h2 = subplot(2, 2, 2);
h3 = subplot(2, 2, 3);
h4 = subplot(2, 2, 4);
% Change size and location of subplot#1
h1.Position = [.1, .6, .2, .3]
Mr. 206
Mr. 206 2018년 10월 11일
편집: Mr. 206 2018년 10월 11일
error: scalar cannot be indexed with .
error: assignment failed, or no method for 'scalar = matrix'

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by