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

% Last Modified by GUIDE v2.5 20-Dec-2013 16:07:14

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

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

% Update handles structure
guidata(hObject, handles);

% Achsen benennen  , axes1 
set(get(handles.axes1,'XLabel'),'String','time [s]')
set(get(handles.axes1,'YLabel'),'String','Moment M [N.m]')

% Achsen benennen  , axes2 
set(get(handles.axes2,'XLabel'),'String','time [s]')
set(get(handles.axes2,'YLabel'),'String','Position X [m]')

% Limit der Achsen , Momentacshe 
set(handles.axes1,'XLim',[0 90])
set(handles.axes1,'YLim',[-800 800])

% Limit der Achsen , Positionsacshe
set(handles.axes2,'XLim',[0 90])
set(handles.axes2,'YLim',[0 1.5])




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


% --- Outputs from this function are returned to the command line.
function varargout = Spro_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 Plot_button.
function Plot_button_Callback(hObject, eventdata, handles)
% hObject    handle to Plot_button (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

data=get(handles.table,'data'); % get the data 

M=data(:,1);
X=data(:,2);
T=data(:,3);

plot(handles.axes1,T,M);
plot(handles.axes2,T,X);





% --- Executes when entered data in editable cell(s) in table.
function table_CellEditCallback(hObject, eventdata, handles)
% hObject    handle to table (see GCBO)
% eventdata  structure with the following fields (see UITABLE)
%	Indices: row and column indices of the cell(s) edited
%	PreviousData: previous data for the cell(s) edited
%	EditData: string(s) entered by the user
%	NewData: EditData or its converted form set on the Data property. Empty if Data was not changed
%	Error: error string when failed to convert EditData to appropriate value for Data
% handles    structure with handles and user data (see GUIDATA)

data =get(handles.table ,'data')
guidata(hObject, handles);
