?? filter.m
字號:
function filter.m
% This is just a place to document what I understand about MATLAB's FILTER
% function. Let a polynomial or truncated power-series be stored as a list
% of coefficients a_0, a_1, ..., a_p in that order in a vector of length
% p+1. From the power-series viewpoint, Y = FILTER(A,B,X) can just be
% thought of as doing
% (polynomial A)
% Y = -------------- * (array of polynomials X)
% (polynomial B)
% expanding the resulting power series to same order as X, so that Y and X
% have the same size.
%
% If only they explained that in their documentation!
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -