/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ /****************************************************** * sin.c * * array pre-compiled class library is needed to run * this demo program. ******************************************************/ #include main() { double height = 3.0, width = 200.0; array x=array(0 , width , 100 ); // start,stop,npoint plot << x << (cos(x/5)+sin(x/7))*height/4 << "\n" ; }