sigres.m

来自「用matlab中的m文件和Simulik实现rf的经典例子!」· M 代码 · 共 9 行

M
9
字号
% SIGRES  Function to plot the signal response of a complex system
% 
%    SIGRES (x, y) plots the magnitude of the signal response of the system
%			which created Y when given X.
%
function[] = sigres(x,y)
[txy,f]=tfe(x,y);
plot(-pi:2*pi/(length(f)-1):pi,20*log10(abs(fftshift(txy))));

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?