GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Math::GSL::BSpline(3) User Contributed Perl Documentation Math::GSL::BSpline(3)

Math::GSL::BSpline - Functions for the computation of smoothing basis splines

    use Math::GSL::BSpline qw/:all/;

gsl_bspline_alloc($k, $nbreak)
This function allocates a workspace for computing B-splines of order $k. The number of breakpoints is given by $nbreak. This leads to n = $nbreak + $k - 2 basis functions. Cubic B-splines are specified by $k = 4.
gsl_bspline_free($w)
This function frees the memory associated with the workspace $w.
gsl_bspline_ncoeffs($w)
This function returns the number of B-spline coefficients given by n = nbreak + k - 2.
gsl_bspline_order
gsl_bspline_nbreak
gsl_bspline_breakpoint
gsl_bspline_knots($breakpts, $w)
This function computes the knots associated with the given breakpoints inside the vector $breakpts and stores them internally in $w->{knots}.
gsl_bspline_knots_uniform($a, $b, $w)
This function assumes uniformly spaced breakpoints on [$a,$b] and constructs the corresponding knot vector using the previously specified nbreak parameter. The knots are stored in $w->{knots}.
gsl_bspline_eval($x, $B, $w)
This function evaluates all B-spline basis functions at the position $x and stores them in the vector $B, so that the ith element of $B is B_i($x). $B must be of length n = $nbreak + $k - 2. This value may also be obtained by calling gsl_bspline_ncoeffs. It is far more efficient to compute all of the basis functions at once than to compute them individually, due to the nature of the defining recurrence relation.

For more informations on the functions, we refer you to the GSL official documentation: http://www.gnu.org/software/gsl/manual/html_node/

Coming soon.

Jonathan "Duke" Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>

Copyright (C) 2008-2021 Jonathan "Duke" Leto and Thierry Moisan

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2022-04-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.