source: trunk/Jgraph/sin.c@ 419

Last change on this file since 419 was 418, checked in by Nicholas Riley, 16 years ago

Jgraph 8.3 from http://www.cs.utk.edu/~plank/plank/jgraph/jgraph.tar.gz

File size: 143 bytes
Line 
1#include <math.h>
2 main()
3 {
4 double x;
5 for (x = -10.0; x < 10.0; x += .03)
6 printf("%f %f\n", x, sin(x));
7 }
Note: See TracBrowser for help on using the repository browser.