This commit is contained in:
Filipriec
2025-10-02 16:22:35 +02:00
parent 8c91575ca5
commit 5c1c9bebb6
4 changed files with 0 additions and 0 deletions

12
hod1/3.m Normal file
View File

@@ -0,0 +1,12 @@
x = zeros(1,100)
a = 0
j = 1
for i=0:2*pi/100:pi*2-(2*pi/100);
a = sin(i)
j
x(j) = a
j = j + 1
end
figure;
plot(x, 'green')