《DSP using MATLAB》示例Example 8.16
Posted 沧海一粟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《DSP using MATLAB》示例Example 8.16相关的知识,希望对你有一定的参考价值。
%% ------------------------------------------------------------------------ %% Output Info about this m-file fprintf(\'\\n***********************************************************\\n\'); fprintf(\' <DSP using MATLAB> Exameple 8.16 \\n\\n\'); time_stamp = datestr(now, 31); [wkd1, wkd2] = weekday(today, \'long\'); fprintf(\' Now is %20s, and it is %8s \\n\\n\', time_stamp, wkd2); %% ------------------------------------------------------------------------ c = [1, 1]; % Numerator coefficient of Ha(s) d = [1, 5, 6]; % Denominator coefficient of Ha(s) T = 1; Fs = 1/T; [b, a] = bilinear(c, d, Fs)
运行结果:
以上是关于《DSP using MATLAB》示例Example 8.16的主要内容,如果未能解决你的问题,请参考以下文章
《DSP using MATLAB》示例Example 6.20
《DSP using MATLAB》示例Example5.17
《DSP using MATLAB》示例Example5.18
《DSP using MATLAB》示例Example5.21