task3 works

This commit is contained in:
Filipriec
2025-10-02 16:03:28 +02:00
parent 2e4f04631a
commit b815f5b3cc

12
3.m
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')