• Remix
  • Share
  • New Entry

on 21 Oct 2022
  • 2
  • 32
  • 5
  • 0
  • 238
hold on
set(gca,'DefaultLineLineWidth',1)
for n = 1:20
b = 20:-1:1;
x = 0:n;
y = -b(n)/n*x+b(n);
plot(x,y)
x = 0:-1:-n;
y = -b(n)/-n*x+b(n);
plot(x,y)
b = -20:-1;
x = 0:-1:-n;
y = -b(n)/-n*x+b(n);
plot(x,y)
x = 0:n;
y = -b(n)/n*x+b(n);
plot(x,y)
end
xline(0)
yline(0)
Remix Tree
Load full remix tree