Add files via upload

This commit is contained in:
BrokenVoodooDoll
2021-01-29 19:09:50 +03:00
committed by GitHub
parent d0773c9435
commit 3d45750509
10 changed files with 472 additions and 0 deletions

3
rect.m Normal file
View File

@@ -0,0 +1,3 @@
function r = rect(x);
r = 0.5 * (sign(x + 0.5) - sign(x - 0.5));
end