资源简介
实现强大的示波器FFT分析功能,在频谱、相位谱、功率谱等方面对波形进行分析,然后运用MATLAB建立GUI显示波形,在matlab2014a版本上运行正常,没有任何错误
代码片段和文件信息
function varargout = main_scope(varargin)
% MAIN_SCOPE MATLAB code for main_scope.fig
% MAIN_SCOPE by itself creates a new MAIN_SCOPE or raises the existing
% singleton*.
%
% H = MAIN_SCOPE returns the handle to a new MAIN_SCOPE or the handle to
% the existing singleton*.
%
% MAIN_SCOPE(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in MAIN_SCOPE.M with the given input arguments.
%
% MAIN_SCOPE(‘Property‘‘Value‘...) creates a new MAIN_SCOPE or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before main_scope_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to main_scope_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 main_scope
% Last Modified by GUIDE v2.5 17-Mar-2019 16:57:58
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @main_scope_OpeningFcn ...
‘gui_OutputFcn‘ @main_scope_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 main_scope is made visible.
function main_scope_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 main_scope (see VARARGIN)
% Choose default command line output for main_scope
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes main_scope wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = main_scope_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)
%
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 47274 2019-03-17 18:46 基于MATLAB的示波器信号处理系统仿真与实现\main_scope.fig
文件 13321 2012-04-07 09:12 基于MATLAB的示波器信号处理系统仿真与实现\main_scope.m
文件 3394 2019-03-17 17:03 基于MATLAB的示波器信号处理系统仿真与实现\sin_add.mat
文件 4210 2019-03-17 17:14 基于MATLAB的示波器信号处理系统仿真与实现\sin_product.mat
文件 80718 2019-03-16 23:59 基于MATLAB的示波器信号处理系统仿真与实现\test1.wav
目录 0 2019-04-17 15:38 基于MATLAB的示波器信号处理系统仿真与实现
----------- --------- ---------- ----- ----
148917 6
- 上一篇:信号的时域波形和频域频谱
- 下一篇:BP神经网络的数据分类-语音特征信号分类修改
相关资源
- 均值滤波和FFT频谱分析Matlab代码
- 基于FPGA分布式算法FIR滤波器verilog代码
- IIR数字滤波器设计实验报告
- 高压直流输电系统的滤波器设计及仿
- 高压直流输电系统的滤波器设计及S
- 数字滤波器的MATLAB与FPGA实现——杜勇
- 基于 MATLAB 的滤波器设计 (fdatool使用
- 基于FPGA的自适应滤波器的实现
-
Simuli
nk的低通数字滤波器的仿真分析 -
基于Simuli
nk的匹配滤波器设计 - 网络化控制系统的H∞滤波器设计本科
- 基于Matlab和FPGA的FIR数字滤波器设计及
- MATLAB在卡尔曼滤波器中应用的理论与
- matlab带通滤波器
- FIR滤波器的VHDL实现
- 最佳接收机的实现与仿真,matlab仿真
- 高斯混合概率假设密度滤波器
- 高斯混合PHD滤波器扩展目标跟踪
- MATLAB设计FPGA实现联合ISE和Modelsim仿真
- 信号与系统大作业 声音信号的频谱分
- 有源电力滤波器
- 自适应滤波器设计及Matlab实现
- 信号处理滤波器设计——基于MATLAB和
- 基于FPGA与MATLAB的fir滤波器实现Verilo
- ARM官方DSP库FIR滤波器的实现
- matlab实现FFT频谱分析仪(GUI)以及滤
- 基于MATLAB的数字滤波器设计
- Kalman滤波器理论与应用——基于MATL
- FIR滤波器的设计及DSP实现
- 优秀数字信号处理课程设计 matlab滤波
评论
共有 条评论