test2.sce 181 B

12345678910111213141516
  1. clear
  2. close
  3. x1 = [0:10];
  4. y1 = x1*2;
  5. x2 = [0:10]+0.5;
  6. y2 = x2*2;
  7. plot2d("ll", x1, y1, -1);
  8. plot2d(x1, y1*2, -2);
  9. plot2d(x2, y2, -10);
  10. //figure;
  11. //plot2d(x2, y2, style=[":"]);