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