Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プロットの 1 つにtextアイテムがあり、特定の場所に特定の向きで配置されています。
text
th=text(x,y,'some text','HorizontalAlignment','right','rotation',rot);
その位置 ( get(th, 'Position')) またはその他のプロパティに基づいて、バウンディング ボックスの下限を計算する方法はありますか? そのすぐ下に別のテキストを配置したい。
get(th, 'Position')
プロパティを使用できExtentます。おそらく、目的に応じて配置を微調整する必要がありますが、次のようになります。
Extent
th = text(x,y,'some text','HorizontalAlignment','right','rotation',rot); ex = get(th,'Extent'); text(ex(1),ex(2),'Text Below')