25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
244B

  1. import graph;
  2. usepackage("palatino");
  3. usepackage("mathpazo");
  4. size(7inches,3inches);
  5. scale(true);
  6. real f(real x) { return sin(x); }
  7. pair F(real x) { return (x, f(x)); }
  8. xaxis("$x$");
  9. yaxis("$y$");
  10. draw(graph(f,-10.,10,operator ..), red);