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

Plotten einer Figur in GUI

 

Slight
Forum-Newbie

Forum-Newbie


Beiträge: 5
Anmeldedatum: 10.11.14
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 10.11.2014, 19:48     Titel: Plotten einer Figur in GUI
  Antworten mit Zitat      
Hey

Ich habe ganz frisch angefangen mich mit Matlab zu beschäftigen und mir fehlen noch viele grundlegende Kenntnisse im Umgang damit. Im Rahmen eines Unikurses soll ich eine GUI erstellen, mittels derer eine 2-D Rakete geplottet werden soll. Ich habe in GUIDE ein Axes- Feld, einen Slider (um die Rumpflänge ändern zu können) und ein static Textfeld eingefügt.
Code:

function varargout = Rakete1(varargin)
% RAKETE1 MATLAB code for Rakete1.fig
%      RAKETE1, by itself, creates a new RAKETE1 or raises the existing
%      singleton*.
%
%      H = RAKETE1 returns the handle to a new RAKETE1 or the handle to
%      the existing singleton*.
%
%      RAKETE1('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in RAKETE1.M with the given input arguments.
%
%      RAKETE1('Property','Value',...) creates a new RAKETE1 or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before Rakete1_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to Rakete1_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 Rakete1

% Last Modified by GUIDE v2.5 06-Nov-2014 21:12:58

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @Rakete1_OpeningFcn, ...
                   'gui_OutputFcn',  @Rakete1_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 Rakete1 is made visible.
function Rakete1_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 Rakete1 (see VARARGIN)

% Choose default command line output for Rakete1
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes Rakete1 wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
set(handles.rumpf_slider, 'Min', 200, 'Max', 500, 'sliderstep', [0.01 0.1]);
set(handles.rumpf_slider, 'Value', 300);
Q = get(handles.rumpf_slider,'Value');
W = 0
% Anfangswerte der Rakete
% Ellipse der Spitze

xCenter = 0;
yCenter = 0;
xRadius = 150;  
yRadius = 15;
theta = 0 : 0.01 : pi;
x = xRadius * -sin(theta) + xCenter;
y = yRadius * -cos(theta) + yCenter;
plot(x, y, 'LineWidth', 2);
axis square;
xlim([-200 350]);
ylim([-40 40]);
grid on;

hold on

% Rumpflänge
     
x1 = [W, Q];
y1 = [15, 15];
plot(x1,y1,'linewidth',2)
   
hold on

x2 = [0, Q];
y2 = [-15, -15];
plot(x2,y2,'linewidth',2)

hold on

%Rückwand
x3 = [Q, Q];
y3 = [15,  -15];
plot(x3,y3,'Linewidth',2)
function varargout = Rakete1_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 slider movement.
function rumpf_slider_Callback(hObject, eventdata, handles)
slider_value = get(handles.slider1,'Value');
return
% hObject    handle to rumpf_slider (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 rumpf_slider_CreateFcn(hObject, eventdata, handles)
% hObject    handle to rumpf_slider (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

 

1. Frage
Obwohl ich in GUIDE (nachträglich) das Axes feld vergrößert habe, wird es in der Figur nur mittig mit gleichbleibender Größe dargestellt. wie kann ich das ändern? (Rakete sieht wegen der unterschiedlichen Achsenskalierung sehr unförmig aus)

2. Wie übertrage ich meine "wirren" plotanweisungen in eine ordentliche funktion, bzw. ist das nötig?

3. Durch den rumpf_slider möchte ich den Rumpf in positiver x-Richtung verlängern. Deshalb habe ich die Koordinaten in Abhängigkeit von dem Value des Sliders definiert. Wie kann ich nach Veränderung des Sliderstands mittels der Callback func des Sliders die Endkoordinaten der Rumpflänge aktualisieren bzw. neuzeichnen lassen?

Vielen Dank für eure Hilfe! Falls ich meinen Fragethread anders aufbauen sollte, bin ich für Tipps sehr dankbar.

Gruß Slight

Rakete1.m
 Beschreibung:

Download
 Dateiname:  Rakete1.m
 Dateigröße:  4.34 KB
 Heruntergeladen:  368 mal
Private Nachricht senden Benutzer-Profile anzeigen


Slight
Themenstarter

Forum-Newbie

Forum-Newbie


Beiträge: 5
Anmeldedatum: 10.11.14
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 10.11.2014, 20:21     Titel:
  Antworten mit Zitat      
Die zweite Frage konnte ich mir selbst beantworten. hatte nach der Ellipse mein axis als square definiert. Deshalb die Unförmigkeit. Smile
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 - 2024 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.