Syncing to work on interview with entrepreneur essay

This commit is contained in:
Aidan Sharpe
2024-04-14 16:42:27 -04:00
parent bd992d7643
commit 5ad6a9ca32
67 changed files with 2899 additions and 520 deletions

View File

@@ -0,0 +1,11 @@
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)
% Take the z-transforms
F_a = ztrans(f_a)
F_b = ztrans(f_b)
F_c = ztrans(f_c)