En cliquant sur une imagette, vous accéderez au source et à l'image. En cliquant sur cette dernière, vous ouvrirez le fichier PDF associé.
/* -*-ePiX-*- */ /* clipplot.c -- May 29, 2002 */ #include "epix.h" using namespace ePiX; double f(double t) { return 2*t*(1-t)*(1-t); } double g(double t) { return 1/(1-t*t); } int main() { bounding_box(P(-2,-4), P(2,4)); picture(200,200); unitlength("1pt"); offset(120, -40); begin(); crop(); // Vertical asymptotes dashed(); line(P(-1, y_min), P(-1, y_max)); line(P( 1, y_min), P( 1, y_max)); solid(); // Axes h_axis(8); v_axis(8); h_axis_labels(4, P(-1, 2), tl); // align top-left v_axis_labels(4, P(-1, 2), tl); // Graphs plot(f, x_min, x_max, 40); bold(); plot(g, x_min, x_max, 80); end(); }