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

button gruop erweitern

 

akir10
Forum-Newbie

Forum-Newbie


Beiträge: 2
Anmeldedatum: 09.07.11
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 10.07.2011, 14:53     Titel: button gruop erweitern
  Antworten mit Zitat      
Hallo, ich bräuchte mal eure Hilfe:
Ich muss mein GUI, welches zu diesem M-file gehört, um mehrere radio-buttons erweitern. Kann ich das direkt hier drin machen? Wenn ja dann sagt mir bitte wie.
Desweiteren soll nicht nur ein Drahtmodell erscheinen, sondern auch ein Flächenmodell. Könnt ihr mir da auch helfen?
lg akir10
Code:
%
function varargout = Bedieninterface(varargin)
% BEDIENINTERFACE MATLAB code for Bedieninterface.fig
%      BEDIENINTERFACE, by itself, creates a new BEDIENINTERFACE or raises the existing
%      singleton*.
%
%      H = BEDIENINTERFACE returns the handle to a new BEDIENINTERFACE or the handle to
%      the existing singleton*.
%
%      BEDIENINTERFACE('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in BEDIENINTERFACE.M with the given input arguments.
%
%      BEDIENINTERFACE('Property','Value',...) creates a new BEDIENINTERFACE or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before Bedieninterface_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to Bedieninterface_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES
 
% Edit the above text to modify the response to help Bedieninterface
 
% Last Modified by GUIDE v2.5 07-Jul-2011 15:50:52
 
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @Bedieninterface_OpeningFcn, ...
                   'gui_OutputFcn',  @Bedieninterface_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end
 
if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
 
 
% --- Executes just before Bedieninterface is made visible.
function Bedieninterface_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 Bedieninterface (see VARARGIN)
 
% Choose default command line output for Bedieninterface
handles.output = hObject;
 
% Update handles structure
guidata(hObject, handles);
 
% UIWAIT makes Bedieninterface wait for user response (see UIRESUME)
% uiwait(handles.figure1);
 
 
% --- Outputs from this function are returned to the command line.
function varargout = Bedieninterface_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 during object creation, after setting all properties.
function bg_body_CreateFcn(hObject, eventdata, handles)
% hObject    handle to bg_body (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called
 
 
 
set(hObject,'SelectionChangeFcn',@sel_body);
function sel_body(source,eventdata)
global body
 
rb_Koerper=get(eventdata.NewValue,'Tag')
 
switch rb_Koerper
    case'rbq'
        body=Quader(5,5,5)
    case'rbp'
        body=Quader(10,7,8)
    otherwise
        disp('Fehler bei Körperauswahl')
end
zeichnen(body)
 
 
% --- Executes on slider movement.
function slider2_Callback(hObject, eventdata, handles)
% hObject    handle to slider2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
 
% Hints: get(hObject,'Value') returns position of slider
%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider
 
 
% --- Executes during object creation, after setting all properties.
function slider2_CreateFcn(hObject, eventdata, handles)
% hObject    handle to slider2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called
 
% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor',[.9 .9 .9]);
end
 
addlistener(hObject,'Action',@Schieberegler)
 
function Schieberegler(hObject,eventdata,handles)
global rb_Transf body
Wert=get(hObject,'Value')
switch rb_Transf
    case'rb_tx'
        body2=Translation(body,Wert,0,0)
    case'rb_ty'
        body2=Translation(body,0,Wert,0)
    case'rb_tz'
        body2=Translation(body,0,0,Wert)
end
zeichnen(body2)
 
% --- Executes during object creation, after setting all properties.
function bg_Transfunktion_CreateFcn(hObject, eventdata, handles)
% hObject    handle to bg_Transfunktion (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called
set(hObject,'SelectionChangeFcn',@sel_transf)
 
function sel_transf(source,eventdata)
global rb_Transf
rb_Transf=get(eventdata.NewValue,'Tag');

 
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.