1POLY(3) User Contributed Perl Documentation POLY(3)
2
3
4
6 PDL::GSLSF::POLY - PDL interface to GSL Special Functions
7
9 This is an interface to the Special Function package present in the GNU
10 Scientific Library.
11
12 NOTE: this should actually be PDL::POLY for consistency but I don't
13 want to get into edits changing the directory structure at this time.
14 These fixes should allow things to build.
15
18 gsl_poly_eval
19 Signature: (double x(); double c(m); double [o]y())
20
21 c[0] + c[1] x + c[2] x^2 + ... + c[m-1] x^(m-1)
22
23 gsl_poly_eval does not process bad values. It will set the bad-value
24 flag of all output piddles if the flag is set for any of the input
25 piddles.
26
28 This file copyright (C) 1999 Christian Pellegrin
29 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
30 You are allowed to redistribute this software / documentation under
31 certain conditions. For details, see the file COPYING in the PDL
32 distribution. If this file is separated from the PDL distribution, the
33 copyright notice should be included in the file.
34
35 The GSL SF modules were written by G. Jungman.
36
37
38
39perl v5.30.2 2020-04-02 POLY(3)