How can I retrieve the size of each tile box (height or width) so that I can place text in the right proportion as the values of each tiledplot vary?
6 ビュー (過去 30 日間)
古いコメントを表示
How can I retrieve the size of each tile box (height or width) so that I can place text in the right proportion with respect the height and width of the plot box as the values of each tiledplot ytick mark or xmark vary and the texts in successive tiles are not in the same position.
Each tile plot has its own velocity range but the plot box is the same height. I wanted to position text in upper left corner with respect a fraction of the axes plot height independent of the magnitude of the velocity values and I was thinking to obtain the height of each tilebox so I can place the text proportionally. Please see image.
text(t(230),(max(absV)-0.04.*((max(absV(:,i_probe,I_file)))-(min(V(:,i_probe,I_file)))),['${\rm{Deceleration}} =$',num2str(sprintf('%.2f',Decceleration_per_height(i_probe))),'$\,\,(m/{s^2})$'],'Color','red', 'FontSize', 10,'Interpreter', 'latex');%, 'BackgroundColor', 'w');
0 件のコメント
回答 (1 件)
Cris LaPierre
2021 年 12 月 28 日
If you capture the tiledlayout object, you can query the position of the axes in each tile, with returns the position as [left bottom width height]
t = tiledlayout(2,3)
for l = 1:6
nexttile
plot(rand(5))
end
t.Children(1).Position
t.Children(3).Position
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!