资源简介

用MATLAB软件实现控制系统的频域分析,并且用GUI界面实现,包括源代码,PPT和word文档

资源截图

代码片段和文件信息

function varargout = s(varargin)
% S M-file for s.fig
%      S by itself creates a new S or raises the existing
%      singleton*.
%
%      H = S returns the handle to a new S or the handle to
%      the existing singleton*.
%
%      S(‘CALLBACK‘hobjecteventDatahandles...) calls the local
%      function named CALLBACK in S.M with the given input arguments.
%
%      S(‘Property‘‘Value‘...) creates a new S or raises the
%      existing singleton*.  Starting from the left property value pairs are
%      applied to the GUI before s_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to s_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 s

% Last Modified by GUIDE v2.5 14-Dec-2010 21:24:19

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘       mfilename ...
                   ‘gui_Singleton‘  gui_Singleton ...
                   ‘gui_OpeningFcn‘ @s_OpeningFcn ...
                   ‘gui_OutputFcn‘  @s_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 s is made visible.
function s_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 s (see VARARGIN)

% Choose default command line output for s
handles.output = hobject;

% Update handles structure
guidata(hobject handles);

% UIWAIT makes s wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% **_OpeningFcn函数是GUI在打开时的执行的命令,此时GUI界面还没有显示出来
% 将背景图像载入Matlab
% 如果图像不在当前目录,必须使用完整路径
backgroundImage = importdata(‘1.jpg‘);
% 选择坐标系
axes(handles.axes1);
% 将图片添加到坐标系中,于是就成了背景了
image(backgroundImage);
% 将坐标系的坐标轴标签去掉
axis off

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-06-09 12:50  朱建军-09电控-43号-控制系统的频域分析\
     文件      633856  2011-06-06 23:03  朱建军-09电控-43号-控制系统的频域分析\MATLAB实践课题.ppt
     目录           0  2011-06-09 12:50  朱建军-09电控-43号-控制系统的频域分析\作业 朱建军 09电控 43号\
     文件      408064  2011-05-23 20:58  朱建军-09电控-43号-控制系统的频域分析\作业 朱建军 09电控 43号\作业.doc
     文件       61952  2010-12-23 09:43  朱建军-09电控-43号-控制系统的频域分析\朱建军-09电控-43号.wps
     目录           0  2011-06-09 12:50  朱建军-09电控-43号-控制系统的频域分析\源文件\
     文件       82469  2011-06-06 22:08  朱建军-09电控-43号-控制系统的频域分析\源文件\1.jpg
     文件      870268  2010-12-19 21:57  朱建军-09电控-43号-控制系统的频域分析\源文件\10.jpg
     文件      316707  2010-12-23 08:12  朱建军-09电控-43号-控制系统的频域分析\源文件\11.jpg
     文件      603506  2010-12-22 16:37  朱建军-09电控-43号-控制系统的频域分析\源文件\12.jpg
     文件      296467  2010-12-14 22:09  朱建军-09电控-43号-控制系统的频域分析\源文件\2.jpg
     文件      753881  2010-11-28 16:56  朱建军-09电控-43号-控制系统的频域分析\源文件\3.jpg
     文件      800297  2010-12-23 08:31  朱建军-09电控-43号-控制系统的频域分析\源文件\4.jpg
     文件      521172  2010-12-23 08:25  朱建军-09电控-43号-控制系统的频域分析\源文件\5.jpg
     文件      207331  2010-12-22 16:15  朱建军-09电控-43号-控制系统的频域分析\源文件\6.jpg
     文件      551475  2010-02-25 09:31  朱建军-09电控-43号-控制系统的频域分析\源文件\7.jpg
     文件      650850  2010-12-15 15:39  朱建军-09电控-43号-控制系统的频域分析\源文件\8.jpg
     文件      635945  2010-12-23 08:20  朱建军-09电控-43号-控制系统的频域分析\源文件\9.jpg
     文件        4041  2010-12-14 21:24  朱建军-09电控-43号-控制系统的频域分析\源文件\s.fig
     文件        3258  2010-12-14 21:24  朱建军-09电控-43号-控制系统的频域分析\源文件\s.m
     文件        5816  2010-12-22 16:44  朱建军-09电控-43号-控制系统的频域分析\源文件\s1.fig
     文件        5119  2010-12-22 16:44  朱建军-09电控-43号-控制系统的频域分析\源文件\s1.m
     文件        3345  2010-12-15 16:24  朱建军-09电控-43号-控制系统的频域分析\源文件\s10.fig
     文件        3141  2010-12-15 16:26  朱建军-09电控-43号-控制系统的频域分析\源文件\s10.m
     文件        4496  2010-12-19 22:00  朱建军-09电控-43号-控制系统的频域分析\源文件\s11.fig
     文件        3609  2010-12-19 22:01  朱建军-09电控-43号-控制系统的频域分析\源文件\s11.m
     文件        3680  2010-12-19 22:17  朱建军-09电控-43号-控制系统的频域分析\源文件\s12.asv
     文件        4088  2010-12-19 22:03  朱建军-09电控-43号-控制系统的频域分析\源文件\s12.fig
     文件        3681  2010-12-22 20:46  朱建军-09电控-43号-控制系统的频域分析\源文件\s12.m
     文件        4056  2010-12-22 16:35  朱建军-09电控-43号-控制系统的频域分析\源文件\s13.fig
     文件        3302  2010-12-22 16:38  朱建军-09电控-43号-控制系统的频域分析\源文件\s13.m
............此处省略20个文件信息

评论

共有 条评论