pp_addpm({At=>Top},<<'EOD'); =head1 NAME PDL::GSLSF::COUPLING - PDL interface to GSL Special Functions =head1 DESCRIPTION This is an interface to the Special Function package present in the GNU Scientific Library. =head1 SYNOPSIS =head1 Functions =cut EOD # PP interface to GSL pp_addhdr(' #include #include "../gslerr.h" '); pp_def('gsl_sf_coupling_3j', GenericTypes => [L], Pars=>'ja(); jb(); jc(); ma(); mb(); mc(); double [o]y(); double [o]e()', Code =>' gsl_sf_result r; GSLERR(gsl_sf_coupling_3j_e,($ja(),$jb(),$jc(),$ma(),$mb(),$mc(),&r)) $y() = r.val; $e() = r.err; ', Doc =>'3j Symbols: (ja jb jc) over (ma mb mc).' ); pp_def('gsl_sf_coupling_6j', GenericTypes => [L], Pars=>'ja(); jb(); jc(); jd(); je(); jf(); double [o]y(); double [o]e()', Code =>' gsl_sf_result r; GSLERR(gsl_sf_coupling_3j_e,($ja(),$jb(),$jc(),$jd(),$je(),$jf(),&r)) $y() = r.val; $e() = r.err; ', Doc =>'6j Symbols: (ja jb jc) over (jd je jf).' ); pp_def('gsl_sf_coupling_9j', GenericTypes => [L], Pars=>'ja(); jb(); jc(); jd(); je(); jf(); jg(); jh(); ji(); double [o]y(); double [o]e()', Code =>' gsl_sf_result r; GSLERR(gsl_sf_coupling_9j_e,($ja(),$jb(),$jc(),$jd(),$je(),$jf(),$jg(),$jh(),$ji(),&r)) $y() = r.val; $e() = r.err; ', Doc =>'9j Symbols: (ja jb jc) over (jd je jf) over (jg jh ji).' ); pp_addpm({At=>Bot},<<'EOD'); =head1 AUTHOR This file copyright (C) 1999 Christian Pellegrin All rights reserved. There is no warranty. You are allowed to redistribute this software / documentation under certain conditions. For details, see the file COPYING in the PDL distribution. If this file is separated from the PDL distribution, the copyright notice should be included in the file. The GSL SF modules were written by G. Jungman. =cut EOD pp_done();