필터 지우기
필터 지우기

Number of push button change

조회 수: 3 (최근 30일)
João
João 2019년 1월 18일
댓글: Image Analyst 2019년 1월 20일
I have an audio that I've split into 2 segments. I'd like to plot the audio file and add 2 push buttons in the figure, in order to play each segment. This part is quite standard to do. What if I decide to split the signal in 3 or 4, or more? How can I do that without creating all the possible push button? Is there any cleaver way of do it? Using a for loop uicontrol() would be a solutions.

채택된 답변

Image Analyst
Image Analyst 2019년 1월 18일
편집: Image Analyst 2019년 1월 18일
Have an edit field or scrollbar/slider that allows the user to specify the number of segments to split it up into. Then have a single pushbutton that reads the number from the edit field and does its thing
numSegments = handles.sldNumSegments.Value; % For a scrollbar/slider in GUIDE
numSegments = str2double(handles.edtNumSegments.String); % For an edit text box in GUIDE
You could do the same thing to have the user say what segment to play, so they could specify to split it up into 9 segments and play segment #4 for example.
Attach your fig file and m file if you need any more help.
  댓글 수: 5
João
João 2019년 1월 20일
How do I get the value "val" from popupmenu into the callback of the push button?
selectSeg = uicontrol(gcf, 'Style' , 'popupmenu', ...
'String' , typeColorMap, ...
'Position', [10,200,83,20],...
'CallBack', @seg_index_Callback);
button = uicontrol('Parent', gcf,'Style','pushbutton',...
'Units','normalized',...
'Position',[0.4 0.3 0.2 0.1],...
'String','Display Difference',...
'Callback', @button_callback);
function seg_index_Callback(hObject, eventdata, handles)
str = get(hObject, 'String');
val = get(hObject,'Value');
end
function button_callback(hObject, eventdata, handles)
popup_sel_index = get(hObject, 'Value')
end
I've tried this but it did not work...
popup_sel_index = get(handles.popupmenu, 'Value');
Image Analyst
Image Analyst 2019년 1월 20일
Of course it didn't work. Because you're not using GUIDE. You created the popup on your own for some reason with uicontrol. So it's handle is not handles.popupmenu, but the name you gave it, which is selectSeg. So to get the value you need to refer to selectSeg.Value. If you want it in a separate variable for some reason, you could do
popup_sel_index = selectSeg.Value;

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

추가 답변 (1개)

Kevin Phung
Kevin Phung 2019년 1월 18일
Instead of having a pushbutton per segment, perhaps you can create a listbox that will be populated with the number of segments in your audio file.
Pushing the pushbutton will then play the selected segment.
  댓글 수: 2
João
João 2019년 1월 19일
How can I pass the popup_sel_index to the callback play?
selectSeg = uicontrol(gcf, 'Style' , 'popupmenu', ...
'String' , typeColorMap, ...
'Position', [10,200,83,20],...
'CallBack', @seg_index_Callback);
playB = uicontrol(gcf, 'Style' , 'push', ...
'String' , 'Play', ...
'Position', [10,225,83,20], ...
'CallBack', @play_Callback);
seg_index_Callback(selectSeg)
play_Callback(playB)
function seg_index_Callback(hObject, eventdata, handles)
popup_sel_index = get(hObject, 'Value');
end
function play_Callback(hObject, eventdata, handles)
soundsc(seg{1,popup_sel_index})
end
Image Analyst
Image Analyst 2019년 1월 19일
Would have been no problem with GUIDE where every callback function has access to ALL the controls and their values. But since you've accepted this answer, I guess you want to keep attempting to do it this way. I'm sure Kevin will answer shortly.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by