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,13 @@
clear all;
clf;
t = -10:0.01:10;
y1 = cos(pi*t);
y2 = cos(2*pi*t/3);
y = y1 + y2;
plot(t,y, "linewidth",3);
title('Combining Cosines');
xlabel('time (seconds)');
ylabel('y(t)');
axis([-10 10 -3 3]);
grid