IDIL Tutorial

A first simple program

This is what an IDIL program looks like.

    #include "IDIL.h"

    int main(int argc, char * const argv[])
    {
      Array<float> x,y;

      x=findgen(1000)/100;
      y=sin(x);

      plot(x,y);
      message("Press OK to finish.");
      return 0;
    }

Generated on Fri Oct 24 18:41:59 2008 for IDIL by  doxygen 1.5.5