- /
-
Matlab Christmas Sign
on 4 Oct 2022
- 4
- 14
- 0
- 0
- 236
A=1:9
B=A./A
C=6:9
set(gca,'DefaultLineLineWidth',2)
set(gca,'Color','k')
for j=1:100
figure(1)
for k=1:9
hold on
plot(B*k,A)
end
plot(A,B*9)
plot(C,B(C))
plot(3:4,[6 6],7:9,[6 6 6])
plot(6:7,[9 9],'k')
plot(7:8,[1 1],'k')
ylim([-5 15])
xlim([-5 15])
end