フィルターのクリア

Why do i get this error?

2 ビュー (過去 30 日間)
new user 00
new user 00 2018 年 7 月 1 日
コメント済み: new user 00 2018 年 7 月 1 日
In a gui, I used a push button with a callbackfunction.
p1 = uicontrol('Style','pushbutton','String','Browse','Position',[480,500,150,50],'callback',{@browse_button_Callback});
"Error:Too many input arguments" I am totally unaware of the mistake.

採用された回答

Adam Danz
Adam Danz 2018 年 7 月 1 日
編集済み: Adam Danz 2018 年 7 月 1 日
The first two inputs of a callback function are
  1. The object handle
  2. An event data structure
See this for more info.
If those are your only inputs, remove the curly brackets around your function call.
p1 = uicontrol('Style','pushbutton','String','Browse','Position',[480,500,150,50],'callback',@browse_button_Callback);
Use the curly brackets to pass additional inputs to your callback function. For example
p1 = uicontrol(..., 'callback',{@browse_button_Callback, data});
will pass the 'data' variable as the third input to browse_button_callback().
If you're not passing additional inputs to your callback function, you should only have those first two inputs.
If that doesn't help, please provide the actual callback function.
  1 件のコメント
new user 00
new user 00 2018 年 7 月 1 日
Thanks!! it did help.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by