computesignal.m

来自「matlab的源程序」· M 代码 · 共 22 行

M
22
字号
function [r] = ComputeSignal(g,y)%% [r] = ComputeSignal(g,y)%% This function compute the output of the SISO filter g% when driven by the observations y.%% Author : Pierre JALLON% Date of creation : 04/23/2005% Date of last modification : 04/23/20005%
Lmax = size(g,1);N = size(y,1);         r = 0;for (n=1:N)	r = r + filter(g(:,n),1,y(n,:));end   

⌨️ 快捷键说明

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