フィルターのクリア

Can I do this with LOOPING

1 回表示 (過去 30 日間)
Salim Muhammad
Salim Muhammad 2017 年 1 月 30 日
コメント済み: Salim Muhammad 2017 年 2 月 1 日
Hello, i want to make some sorting program. from 2 pushbutton (pushbutton A and B) callback and with some value and the sorting in listbox. so when i push the pushbutton A, it will show the button name and the value in listbox. something like this (A, 12) with A is the name and 12 is the value. and later when i push button B with value 3 (B, 3) it should have be in the first listbox apart (A, 12) because the value in B is smaller and so everytime we press the button it will show the name and the value and if the value is smaller it will be in the first and if larger it will be in the next one. i can't use some larger and smaller operator because in the listbox they become string. how can i compare the value in the list box?

採用された回答

Walter Roberson
Walter Roberson 2017 年 1 月 31 日
Consider storing the numeric values in the UserData field of one of the controls.
ud = get(handles.listbox1, 'UserData');
if isempty(ud)
ud = struct('as_string', {{}}, 'as_numeric', []);
end
new_str = [ud.as_string, new_string];
new_num = [ud.as_numeric, new_number];
[new_num, sort_order] = sort(new_num);
new_str = new_str(sort_order);
ud.as_string = new_str;
ud.as_numeric = new_num;
set(handles.listbox1, 'UserData', ud);
and now you can set the listbox string to new_str
  1 件のコメント
Salim Muhammad
Salim Muhammad 2017 年 2 月 1 日
Awesome, it's work

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

その他の回答 (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