Introduction
Statistics
Contact
Development
Disclaimer
Help
ftp.icm.edu.pl home page
import graph;
size(150,0);
real f(real x) {return exp(x);}
pair F(real x) {return (x,f(x));}
draw(graph(f,-4,2,operator ..),red);
xaxis("$x$");
yaxis("$y$",0);
labely(1,E);
label("$e^x$",F(1),SE);