Lab Matlab
Lab Matlab
OBJECTIVE:
Maker GUI adder
function varargout = mat7(varargin)
%MAT7 M-file for mat7.fig
% MAT7, by itself, creates a new MAT7 or raises the existing
% singleton*.
%
% H = MAT7 returns the handle to a new MAT7 or the handle to
% the existing singleton*.
%
% MAT7('Property','Value',...) creates a new MAT7 using the
% given property value pairs. Unrecognized properties are passed via
% varargin to mat7_OpeningFcn. This calling syntax produces a
% warning when there is an existing singleton*.
%
% MAT7('CALLBACK') and MAT7('CALLBACK',hObject,...) call the
% local function named CALLBACK in MAT7.M with the given input
% arguments.
%
% *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
CE09-67 Page 1
LAB 6
CE09-67 Page 2
LAB 6
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
CE09-67 Page 3
LAB 6
CE09-67 Page 4
LAB 6
CE09-67 Page 5
LAB 6
CE09-67 Page 6
LAB 6
CE09-67 Page 7