5th semester files

This commit is contained in:
2024-02-22 14:23:12 -05:00
parent e39a9fec53
commit 5223b711a6
727 changed files with 1836099 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
% pkg load control
% t = 0:0.1:1000;
s = tf('s');
H = (s^2 + 5*s + 6) / (s * (s+1) * (s^2 + 10*s + 50));
pzmap(H);
% pkg load symbolic
% syms s t
% y = e^(-t) * cos(10*t) * heaviside(t);
% la