Title of a plot is not aligned properly in subplots
조회 수: 6 (최근 30일)
이전 댓글 표시
Using subplot I got maligned of title in a horizontal plot as shown in
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145431/image.png)
while making blankplot. Could you please help me how to fix it. The code for the sub plot is
blankplot = subplot('position', [0.80 0.10 0.15 0.70]);
t01 = title('Accumul. scatter');
set(t01, 'FontSize',32);
axis('off');
it will be great if I can solve.
댓글 수: 0
채택된 답변
Star Strider
2014년 9월 17일
Where is it supposed to be?
If you want 'Accumul. scatter' to be a super-title (centred above all the subplots), you need to get the 'Position' vectors for 'Data' and 'Autocorrelation' and calculate the 'Position' vector for 'Accumul. scatter' from them.
You might want to go with text instead. It’s likely simpler and easier.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Title에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!