0% found this document useful (0 votes)
78 views3 pages

Function: 'Gui - Name' 'Gui - Singleton' 'Gui - Openingfcn' 'Gui - Outputfcn' 'Gui - Layoutfcn' 'Gui - Callback'

This document contains MATLAB code for a GUI called repaso_guide. The code defines functions for creating and handling events of the GUI such as button clicks. When buttons are pressed, data is read from a file, plotted on axes and modified by performing operations on arrays representing the data.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
78 views3 pages

Function: 'Gui - Name' 'Gui - Singleton' 'Gui - Openingfcn' 'Gui - Outputfcn' 'Gui - Layoutfcn' 'Gui - Callback'

This document contains MATLAB code for a GUI called repaso_guide. The code defines functions for creating and handling events of the GUI such as button clicks. When buttons are pressed, data is read from a file, plotted on axes and modified by performing operations on arrays representing the data.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 3

function varargout = repaso_guide(varargin)

% REPASO_GUIDE MATLAB code for repaso_guide.fig


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

% Last Modified by GUIDE v2.5 25-Jun-2019 15:36:12

% Begin initialization code - DO NOT EDIT


gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @repaso_guide_OpeningFcn, ...
'gui_OutputFcn', @repaso_guide_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 repaso_guide is made visible.


function repaso_guide_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 repaso_guide (see VARARGIN)

% Choose default command line output for repaso_guide


handles.output = hObject;
% Update handles structure
guidata(hObject, handles);

% UIWAIT makes repaso_guide wait for user response (see UIRESUME)


% uiwait(handles.figure1);

% --- Outputs from this function are returned to the command line.
function varargout = repaso_guide_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)

handles.a=xlsread('datos.xlsx');
guidata(hObject,handles);
axes(handles.axes1);
plot(handles.a);
hold on;
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)

handles.arreglo=handles.a;
handles.arreglo(12:17)=12.5;
handles.arreglo(70:79)=((67+78)/2);
guidata(hObject,handles);
axes(handles.axes1);
plot(handles.arreglo);

% --- Executes on button press in pushbutton3.


function pushbutton3_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.impar=handles.arreglo(1:2:end);
guidata(hObject,handles);
axes(handles.axes2);
plot(handles.impar);
hold on;

% --- Executes on button press in pushbutton4.


function pushbutton4_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton4 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
L100=mean(handles.impar(end-20:end))
L0=mean(handles.impar(1:2))
DU=1;
DY=L100-L0;
K1=DY/DU;
th1=0.5;
tau1=3-th1;
Gp1=tf([K1],[tau1 1],'InputDelay',th1)
[y1 t1]=step(Gp1);
y1=y1+L0;
axes(handles.axes2);
plot(t1,y1,'LineWidth',2)

Published with MATLAB® R2016a

You might also like