updated changes so far

This commit is contained in:
2026-04-26 22:23:54 +02:00
commit 930f7ae4a4
16 changed files with 5456 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
figure;
t = 0:0.001:1
y = sin(2*pi*1*t)
plot(t,y,'b')
hold on
y = sin(2*pi*1*(t-0.1))
plot(t,y,'r')
y = sin(2*pi*1*t-2*pi*0.1)
plot(t,y,'g:')
figure;
t = 0:0.001:1
y = sin(2*pi*3*t)
plot(t,y,'b')
hold on
y = sin(2*pi*3*(t-0.1))
plot(t,y,'r')
y = sin(2*pi*3*t-2*pi*0.3)
plot(t,y,'g:')