How can I assign a histfit graph to a parent axis in a gui?

3 ビュー (過去 30 日間)
Matthew Weihing
Matthew Weihing 2016 年 4 月 20 日
コメント済み: Adam Danz 2019 年 11 月 26 日
For instance, if I type:
" plot(x,y,'parent',handles.axes1) "
this will plot x and y to axes1 in my gui, but if I type:
" histfit(data_set,number_of_bins,'parent',handles.axes1) "
(where data_set is a vector of arbitrary length and number of bins is some constant)
MATLAB tells me I have too many input arguments for histfit. I was wondering if there was a way around this error message. Thanks

採用された回答

Brendan Hamm
Brendan Hamm 2016 年 4 月 20 日
histfit always plots to the current axes.You need to make the axes you wish to place this on the current axes using:
axes(handles.axes1)
histfit(data_set,number_of_bins)
This will then appear on the axes stored in handles.axes1.
  1 件のコメント
Adam Danz
Adam Danz 2019 年 11 月 26 日
Future releases should fix this and allow users to specify the axes as an optional first input as almost all matlab graphics functions do.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by