Representation of the vector array of Z-transform
조회 수: 4 (최근 30일)
이전 댓글 표시
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1791250/image.png)
% Step 2: Define the Desired Output Vector z with delays ranging N
z = zeros(M+1, 1);
for i = 0:M
z(i+1) = (1)^(-i); % Constructing the z vector with terms corresponding to delays z^{-i}
end
disp('The z vector z:')
disp(z);
Is this code correct for writing this vector array here z represents Z transform terms
댓글 수: 0
답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!