Finished DSP lab 4

This commit is contained in:
Aidan Sharpe
2024-04-17 22:51:14 -04:00
parent df7d52f4b1
commit 98168e00bd
9 changed files with 155 additions and 114 deletions

View File

@@ -1,9 +1,9 @@
syms n a b
% Signals to take the z-transform of
f_a = a^n;
f_b = (n+1)*a^n*heaviside(n)
f_c = a^n*cos(b*n)*heaviside(n)
f_a = a^n
f_b = (n+1)*a^n
f_c = a^n*cos(b*n)
% Take the z-transforms
F_a = ztrans(f_a)