• 大小: 1.98MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-13
  • 语言: Matlab
  • 标签: MATLAB  GUI  

资源简介

此为课程设计,通过MATLAB进行GUI设计的一个数字信号处理实现,

资源截图

代码片段和文件信息

function varargout = Course_Design(varargin)
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @Course_Design_OpeningFcn ...
                   ‘gui_OutputFcn‘  @Course_Design_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
function Course_Design_OpeningFcn(hobject eventdata handles varargin)
handles.output = hobject;

ha=axes(‘units‘‘normalized‘‘position‘[0 0 1 1]);
uistack(ha‘down‘);
II=imread(‘cover.jpg‘);
image(II)
colormap gray
set(ha‘handlevisibility‘‘off‘‘visible‘‘off‘);

hc = axes(‘unit‘‘characters‘‘position‘[42 28.5 25.8 2.462]);
strCell = {‘登录系统‘};%% 逐列显示文本
text(‘string‘strCell‘FontSize‘ 16 ‘FontWeight‘ ‘bold‘);
set(hc‘handlevisibility‘‘off‘‘visible‘‘off‘);

guidata(hobject handles);
% --- Outputs from this function are returned to the command line.
function varargout = Course_Design_OutputFcn(hobject eventdata handles) 
varargout{1} = handles.output;
function name_Callback(hobject eventdata handles)
function name_CreateFcn(hobject eventdata handles)
if ispc && isequal(get(hobject‘BackgroundColor‘) get(0‘defaultUicontrolBackgroundColor‘))
    set(hobject‘BackgroundColor‘‘white‘);
end
function number_Callback(hobject eventdata handles)
function number_CreateFcn(hobject eventdata handles)
if ispc && isequal(get(hobject‘BackgroundColor‘) get(0‘defaultUicontrolBackgroundColor‘))
    set(hobject‘BackgroundColor‘‘white‘);
end
function ok_Callback(hobject eventdata handles)
name = get(handles.name‘String‘);
number = get(handles.number‘String‘);
if strcmp(name‘陈宗耀‘) && strcmp(number‘201400402045‘)
    clear;
    clc;
    delete(gcf);
    cover1;
else
    errordlg(‘请输入正确的姓名与学号‘‘提示‘)
end
function cancel_Callback(hobject eventdata handles)
delete(gcf);
function cover_ButtonDownFcn(hobject eventdata handles)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2857  2016-09-08 10:09  201400402045-陈宗耀-数字信号处理\程序文件\Course_Design.fig

     文件       2289  2016-09-08 10:09  201400402045-陈宗耀-数字信号处理\程序文件\Course_Design.m

     文件     224728  2016-08-05 18:59  201400402045-陈宗耀-数字信号处理\程序文件\cover.jpg

     文件      15194  2016-09-06 17:21  201400402045-陈宗耀-数字信号处理\程序文件\cover1.fig

     文件     292756  2016-09-03 22:38  201400402045-陈宗耀-数字信号处理\程序文件\cover1.jpg

     文件     173818  2016-09-07 19:49  201400402045-陈宗耀-数字信号处理\程序文件\cover1.m

     文件      64044  2016-09-07 19:55  201400402045-陈宗耀-数字信号处理\程序文件\czy.wav

     文件      40044  2016-09-04 10:42  201400402045-陈宗耀-数字信号处理\程序文件\ding.wav

     文件      64044  2016-09-04 16:31  201400402045-陈宗耀-数字信号处理\程序文件\wcy.wav

     文件         32  2016-09-08 10:26  201400402045-陈宗耀-数字信号处理\程序文件\登录信息.txt

     文件    1494311  2016-09-08 10:29  201400402045-陈宗耀-数字信号处理\语音信号的处理与滤波.docx

     目录          0  2016-09-08 10:26  201400402045-陈宗耀-数字信号处理\程序文件

     目录          0  2016-09-07 22:34  201400402045-陈宗耀-数字信号处理

----------- ---------  ---------- -----  ----

              2374117                    13


评论

共有 条评论