Universidad Nacional de San Antonio Abad Del Cusco
Universidad Nacional de San Antonio Abad Del Cusco
ALUMNOS:
-JOEL RAMIRO ESCALANTE OCHOA 133404
function varargout = CircuitoParaleloRL(varargin)
% CIRCUITOPARALELORL MATLAB code for CircuitoParaleloRL.fig
% CIRCUITOPARALELORL, by itself, creates a new CIRCUITOPARALELORL or
raises the existing
% singleton*.
%
% H = CIRCUITOPARALELORL returns the handle to a new
CIRCUITOPARALELORL or the handle to
% the existing singleton*.
%
% CIRCUITOPARALELORL('CALLBACK',hObject,eventData,handles,...) calls
the local
% function named CALLBACK in CIRCUITOPARALELORL.M with the given
input arguments.
%
% CIRCUITOPARALELORL('Property','Value',...) creates a new
CIRCUITOPARALELORL or raises the
% existing singleton*. Starting from the left, property value pairs
are
% applied to the GUI before CircuitoParaleloRL_OpeningFcn gets
called. An
% unrecognized property name or invalid value makes property
application
% stop. All inputs are passed to CircuitoParaleloRL_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
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 CircuitoParaleloRL is made visible.
function CircuitoParaleloRL_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 CircuitoParaleloRL (see VARARGIN)
A=imread('RLparalelo','jpg');
A=uint8(A);
Img=image(A,'parent',handles.axes2);
set(handles.axes2,'visible','off','YDir','reverse','XLim',get(Img,'XData'
),'YLim',get(Img,'YData'));
% --- Outputs from this function are returned to the command line.
function varargout = CircuitoParaleloRL_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)
Antes