2 popup menus connected

조회 수: 1 (최근 30일)
Dinouk Goonewardena
Dinouk Goonewardena 2020년 3월 31일
댓글: Rik 2020년 4월 1일
I'm trying to create 2 popup menus the first one stores all the 'Y numbers' and then depending on that I want to get the corressponding 'Version'. Note some Y numbers have more than 1 version. Hence I need help to figure it out
  댓글 수: 10
Rik
Rik 2020년 3월 31일
Your code will generate a variable of the dataset class (which will apparently be removed in a future release), while your screenshot is of the table datatype. The data also doesn't look remotely similar to me. Should the first dropdown contain 0.1, 0.3, and 0.2, with the second dropdown containing only a single option after the first selection has been made?
Dinouk Goonewardena
Dinouk Goonewardena 2020년 3월 31일
편집: Dinouk Goonewardena 2020년 3월 31일
A better example of data i guess, So the first 2 Y number (1) has 2 versions, which should be in the popupmenu2

댓글을 달려면 로그인하십시오.

답변 (1개)

Rik
Rik 2020년 3월 31일
Ynumber=[1;1;2;3;5];
Version={'AP'; 'AP_R' ;'AP' ;'TI1' ;'TI2'};
mytable= table(Ynumber,Version);
%Y_selected=get(handles.dropdown_Y,'Value');
Y_selected=2;
selected_Ynumber=mytable.Ynumber(Y_selected);
L=ismember(mytable.Ynumber,selected_Ynumber);
versions=mytable.Version(L);
The last variable can be used as the String property of your second dropdown.
  댓글 수: 4
Dinouk Goonewardena
Dinouk Goonewardena 2020년 4월 1일
sorry not that line but this;
selected_Ynumber=data_sheet2.YNumber(Y_selected); -----------(Error: Expected one output from a curly brace or dot indexing expression, but there were 12475 results.)
L=ismember(data_sheet2.YNumber,selected_Ynumber);
handles.popupmenu2.String=b(L);
Rik
Rik 2020년 4월 1일
The code I posted works. You can't send me the data you're working with, so you will have to provide example data that will reproduce the error. It seems like Y_selected might not be a scalar, or data_sheet2 is not a table or scalar struct.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by