Here is a different way to describe my problem. I have some figures in the live script output that has a long title. Because it is long, the title is cut off.
How to center a figure in live script output
13 ビュー (過去 30 日間)
古いコメントを表示
On the right, you see the output panel of the live script. When I plot a figure, output is always left-aligned. How can I center the figure?
回答 (3 件)
Sam Raymond
2020 年 2 月 15 日
If you use the Position option in the Figure defintion you can use the width and heights to push the figure into the center
figure('Position',[1000 100 1500 1000]);
If you play around with the values you should get the images in the center.
0 件のコメント
Brian Cianciola
2018 年 7 月 10 日
編集済み: Brian Cianciola
2018 年 7 月 10 日
The movegui() function seems to be what you're looking for, specifically movegui(figureName, 'center')
3 件のコメント
Brian Cianciola
2018 年 7 月 10 日
Yeah, sorry about that. Just tested it out and it centers the new window that you open for the figure on your screen.
Sean de Wolski
2018 年 7 月 10 日
What if you adjust the live editor to have figures inline? Button on right hand side of editor.
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!