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
17 gsl_poly_eval
18 Signature: (double x(); double c(m); double [o]y())
19
20 c[0] + c[1] x + c[2] x^2 + ... + c[m-1] x^(m-1)
21
22 gsl_poly_eval does not process bad values. It will set the bad-value
23 flag of all output ndarrays if the flag is set for any of the input
24 ndarrays.
25
27 This file copyright (C) 1999 Christian Pellegrin
28 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
29 You are allowed to redistribute this software / documentation under
30 certain conditions. For details, see the file COPYING in the PDL
31 distribution. If this file is separated from the PDL distribution, the
32 copyright notice should be included in the file.
33
34 The GSL SF modules were written by G. Jungman.
35
36
37
38perl v5.34.0 2022-02-28 POLY(3)