Create Polar Axes in Tiled layout

25 ビュー (過去 30 日間)
F Schmid
F Schmid 2023 年 1 月 3 日
コメント済み: F Schmid 2023 年 8 月 9 日
I am trying to include a polar axes into a tiledlayout, and change some stuff to the axes. Unfortunately I am not able to include a polaraxes into my tile. The second plot is supposed to be in the tile below.
t = tiledlayout(2,1);
nexttile;
plot(rand(10),rand(10))
nexttile;
plax = polaraxes();
plax.RDir = 'reverse';
polarplot(plax, rand(10),rand(10));

採用された回答

F Schmid
F Schmid 2023 年 1 月 3 日
The trick is to set the location of the polaraxes manually. Not nice but it works.
t = tiledlayout(2,1);
nexttile;
plot(rand(10),rand(10))
plax = polaraxes(t);
plax. Layout.Tile = 2; % tile location
plax.RLim = [0;2];
plax.RDir = 'reverse';
hold on
polarplot(plax, rand(10),rand(10));
  3 件のコメント
Darcy Cordell
Darcy Cordell 2023 年 8 月 9 日
When I do this, it creates a double axis on each tile. One has the polar plot, the other is just a regular blank axis:
tlo = tiledlayout(4,2);
for is = 1:8
nexttile;
ax = polaraxes(tlo);
ax.Layout.Tile = is;
polarplot(rand(10,1),rand(10,1),'.');
end
Result:
Any help is appreciated.
F Schmid
F Schmid 2023 年 8 月 9 日
It's because you already create a axis with the nexttile command. Just don't use it and you're good to go
tlo = tiledlayout(4,2);
for is = 1:8
% nexttile;
ax = polaraxes(tlo);
ax.Layout.Tile = is;
polarplot(rand(10,1),rand(10,1),'.');
end

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePolar Plots についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by