/trunk/Examples/guile/matrix/package.i
# · Swig · 20 lines · 13 code · 6 blank · 1 comment · 0 complexity · 23eb9316ddc68bac0241325516fc0684 MD5 · raw file
- // FILE : package.i
- // See the SWIG users manual
- /*** Matrix and vector package ***/
- %module Matrix
- %{
- #include <math.h>
- %}
- %include guilemain.i
- %include matrix.i
- %include vector.i
- // Include the math library so we can get some random numbers and
- // other stuff
- %include math.i
- extern double drand48();