GUI IN MATLAB 2021B, HOW TO SELSCT LISTBOX

5 ビュー (過去 30 日間)
yasmeen hadadd
yasmeen hadadd 2024 年 7 月 23 日
コメント済み: Walter Roberson 2024 年 7 月 23 日
HI
how i change the color map of figure in GUI by ListBox Items:{ jet hot cool .....} using GUI
  3 件のコメント
Walter Roberson
Walter Roberson 2024 年 7 月 23 日
selected_colormap = Items{app.ColormapListBox.Value};
That should be
selected_colormap = Items{app.ColormapListBox.ValueIndex};
Walter Roberson
Walter Roberson 2024 年 7 月 23 日
Better would be
function ColormapListBoxValueChanged(app, event)
selected_colormap = app.ColormapListBox.Value;
colormap(app.UIAxes, selected_colormap)
end

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

回答 (1 件)

Walter Roberson
Walter Roberson 2024 年 7 月 23 日
Create a listbox with the colormap names. Set the callback for the listbox to execute
Colormap_name = app.LISTBOXNAME.Value;
colormap(app.FIGURENAME, Colormap_name);

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by