% obtainZYvalue.mをUTF-8でテキストファイルとし、拡張子.mで保存してください。

function resp = obtainZYvalue(poly, omega)
    order = length(poly)-1;
    bekimatrix = [order:-1:0];
    resp = omega .^ bekimatrix;
    resp = resp .* poly;
    InnerProduct = ones(length(poly), 1);
    resp = resp * InnerProduct;
end
 

24. LCフィルタ設計MATLAB/GNU Octave mファイルに戻る

 

LCフィルタ設計のTOPに戻る