u_sample1.m
来自「digital signal processing常用工具箱」· M 代码 · 共 13 行
M
13 行
function y = u_sample1 (t)
%U_SAMPLE1: Example user file for GUI module G_SAMPLE
%
% Usage: y = u_sample (t);
%
% Inputs:
% t = vector of input times
% Outputs:
% y = vector of samples of analog signal evaluated at t
y = 0.1 ./ (.1 + (t-1).^2);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?