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 z
% Given z-transforms
F_a = z/(z+0.5)
F_b = z^2/(z-0.8)^2
F_c = z/((z+0.3)*(z+0.6)^2)
% Inverse z-transforms
f_a = iztrans(F_a)
f_b = iztrans(F_b)
f_c = simplify(iztrans(F_c))