How can I perform a summation of a freqz function

조회 수: 1 (최근 30일)
Anthony Koning
Anthony Koning 2023년 4월 6일
편집: Torsten 2023년 4월 6일
Hi, I'm currerntly trying to figure out how to perform a summation of a frequency transfer function. How would I go about summizing a freqz function of z^-k for any given values. For example, if I wanted to range k from 0-3, how would I arrange the sumsym function to evaluate the following transfer function of 1+z^-1+z^-2+z^-3. Thanks for any help.

채택된 답변

Torsten
Torsten 2023년 4월 6일
편집: Torsten 2023년 4월 6일
syms z k
F = @(a) symsum(z^(-k),k,0,a);
F(2)
ans = 

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by