• Remix
  • Share
  • New Entry

on 18 Oct 2021
  • 3
  • 8
  • 0
  • 0
  • 247
close all
figure
hold on
for i=-10:0.375:10
x=0:10;
y=-(i/(10-i))*(x-10)-i+10;
plot(x,y,'LineWidth',1.5)
y=-(i/(10-i))*(x)+i;
plot(x,y,'LineWidth',1.5)
y=(i/(10-i))*(x-10)+i;
plot(x,y,'LineWidth',1.5)
y=(i/(10-i))*(x)-i+10;
plot(x,y,'LineWidth',1.5)
ylim([0 10])
end
Remix Tree