WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

Kombination Radiobutton und PopupMenü

 

tschurl
Forum-Anfänger

Forum-Anfänger


Beiträge: 32
Anmeldedatum: 03.03.09
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 26.09.2011, 13:05     Titel: Kombination Radiobutton und PopupMenü
  Antworten mit Zitat      
Hallo,

ich will in einem GUI Radiobuttons und ein Popupmenü kombinieren.
Also ich habe 2 Radiobutton und 2 Auswahlmöglichkeiten bei einem Popupmenü.
Durch eine PushButton wird dann eine Grafik ausgegeben.
Soweit funktioniert alles.
Habe jetzt nur das Problem wenn ich einen Radiobutton aktiviert habe und eine Änderung im Popupmenü vornehme, die Änderung des Popupmenüs erst angenommen wird wenn ich auch einen Switch bei den Radiobuttons machen.

Weiß hier jemand Abhilfe wie ich ohne den Radiobutton zu ändern, also nur das Popupmenü eine veränderte Grafik über den Pushbutton ausgeben kann?

Hier wäre der Beispielcode:
Code:
% --- Executes just before Matlab_Test_Kombi_v1 is made visible.
function Matlab_Test_Kombi_v1_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to Matlab_Test_Kombi_v1 (see VARARGIN)

% Choose default command line output for Matlab_Test_Kombi_v1
handles.output = hObject;
%set(handles.radiobutton1,'Value',1);

handles.x=1:1:10;
%handles.y = handles.x;
%plot(handles.x, handles.y);
% Update handles structure
guidata(hObject, handles);

% UIWAIT makes Matlab_Test_Kombi_v1 wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = Matlab_Test_Kombi_v1_OutputFcn(hObject, eventdata, handles)
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure
varargout{1} = handles.output;


% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
plot(handles.x, handles.y);
guidata(hObject, handles);



% --- Executes when selected object is changed in uipanel2.
function uipanel2_SelectionChangeFcn(hObject, eventdata, handles)
% hObject    handle to the selected object in uipanel2
% eventdata  structure with the following fields (see UIBUTTONGROUP)
%   EventName: string 'SelectionChanged' (read only)
%   OldValue: handle of the previously selected object or empty if none was selected
%   NewValue: handle of the currently selected object
% handles    structure with handles and user data (see GUIDATA)
switch get(hObject, 'Tag')
    case 'radiobutton1'
       
        handles.y = button1(handles.x);
               
    case 'radiobutton2'
       
        handles.y = button2(handles.x);
       
end
guidata(hObject, handles);


% --- Executes on selection change in popupmenu2.
function popupmenu2_Callback(hObject, eventdata, handles)
% hObject    handle to popupmenu2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: contents = get(hObject,'String') returns popupmenu2 contents as cell array
%        contents{get(hObject,'Value')} returns selected item from popupmenu2
val = get(hObject,'Value');
str = get(hObject,'String');
switch str{val};
    case 'Aufgabe1'
        handles.x = 1:1:10;
    case 'Aufgabe2'
         handles.x = 1:1:20;
   
end
guidata(hObject,handles)


% --- Executes during object creation, after setting all properties.
function popupmenu2_CreateFcn(hObject, eventdata, handles)
% hObject    handle to popupmenu2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


Vielen Dank
Private Nachricht senden Benutzer-Profile anzeigen


Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

Du kannst Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.
Du kannst Dateien in diesem Forum posten
Du kannst Dateien in diesem Forum herunterladen
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2025 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.