フィルターのクリア

Plotting a WindRose figure in a uipanel?

2 ビュー (過去 30 日間)
Benjamin Levy
Benjamin Levy 2017 年 12 月 7 日
コメント済み: Benjamin Levy 2017 年 12 月 8 日
Hi. I'd like to use Daniel Pereira's ( D. Pereira ) WindRose function (very cool), but put the results in a uipanel. My code:
windRosePanel = uipanel('Title','','FontSize',12,...
'Position',[0.0045 0.2306 0.1424 0.21759 ]);
windRosePanelSub = uipanel( 'Parent', windRosePanel, ...
'Title', [ 'wind rose (m/s)' ], ...
'Fontsize', 12, ...
'Position', [ 0.0100 0.0300 0.9700 0.9800 ] );
windSpeed = 2 * rand( 100, 1 );
windDir = 360 * rand( 100, 1 );
windRoseAxes = axes( 'Parent', windRosePanelSub );
windRoseHandle = WindRose( windDir ,windSpeed,'LegendType', ...
1, 'TitleString',{' '}, 'parent', windRoseAxes );
Instead of spawning a new figure, I'd like the output of WindRose to appear in the uipanel, windRosePanelSub.
  1 件のコメント
Benjamin Levy
Benjamin Levy 2017 年 12 月 8 日
Never mind me. It's in a name pair argument as: 'axes', axisHandle.

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by