Du lette etter:

gsl chebyshev

Chebyshev Approximations — GSL 2.7 documentation
https://www.gnu.org › html › cheb
This chapter describes routines for computing Chebyshev approximations to univariate functions. A Chebyshev approximation is a truncation of the series f(x) ...
Math::GSL::Chebyshev - Univariate Chebyshev Series ...
https://metacpan.org/pod/Math::GSL::Chebyshev
Allocates a new Chebyshev object with $size sample points. gsl_cheb_free ($cheb) Deallocates memory associated to $cheb. Returns void. gsl_cheb_init ($cheb,$function, $lower, $upper) gsl_cheb_init ($cheb, sub { sin(cos($_[0])) }, 0, 10 ); Initiate a Chebyshev object with a function and upper and lower bounds. Returns void.
Numerical Integration — GSL 2.7 documentation
https://www.gnu.org/software/gsl/doc/html/integration.html
In order to work efficiently the algorithm requires a precomputed table of Chebyshev moments. type gsl_integration_qaws_table ¶ This structure contains precomputed quantities for the QAWS algorithm. gsl_integration_qaws_table *gsl_integration_qaws_table_alloc(double alpha, double beta, int mu, int nu) ¶
linalg: Chebyshev.cpp File Reference - Perimeter Institute
https://www2.perimeterinstitute.ca › ...
Source code for Chebyshev polynomial approximations. More. ... #include <gsl/gsl_sf_bessel.h> ... Include dependency graph for Chebyshev.cpp: ...
GSL--GNU Scientific Library 小记 - wdliming - 博客园
https://www.cnblogs.com/CodeWorkerLiMing/p/12007498.html
Chebyshev Approximation 车比雪夫逼近 gsl_chebyshev.h 提 供了 [-1, 1] 上一组正交多项式,这对应的是 1/sqrt (1-x^2) 为权的函数空间。 首先用 gsl_cheb_alloc () 分配空间产生 gsl_cheb_series 结构,然后 gsl_cheb_init (),最后 gsl_cheb_free ()。 提供了计算函数值、函数值误差,导函数和积分。 Series Acceleration 级数加速 gsl_sum.h 提 供了一个 Levin u-transform 的东西,没听说 …
Numerical Integration — GSL 2.7 documentation
www.gnu.org › software › gsl
gsl_integration_fixed_type * gsl_integration_fixed_chebyshev ¶ This specifies Chebyshev type 1 quadrature integration. The parameters alpha and beta are ignored for this type. gsl_integration_fixed_type * gsl_integration_fixed_gegenbauer ¶ This specifies Gegenbauer quadrature integration. The parameter beta is ignored for this type.
class ROOT::Math::Chebyshev
http://root.cern › root › html518
It uses the algorithm from <A HREF="http://www.gnu.org/software/gsl/manual/html_node/Chebyshev-Approximations.html">GSL</A> This class does not support ...
Chebyshev Approximations — GSL 2.7 documentation
www.gnu.org › software › gsl
Chebyshev Approximations. This chapter describes routines for computing Chebyshev approximations to univariate functions. A Chebyshev approximation is a truncation of the series , where the Chebyshev polynomials provide an orthogonal basis of polynomials on the interval with the weight function . The first few Chebyshev polynomials are, , , .
cheb - Ruby/GSL (v1.16.0.4)
https://blackwinter.github.io › rdoc
A Chebyshev approximation is a truncation of the series f(x) = sum c_n T_n(x), where the Chebyshev polynomials T_n(x) = cos(n ...
GNU Scientific Library -- Reference Manual - Chebyshev ...
hepg.sdu.edu.cn/zhangxueyao/software_doc/gsl/gsl-ref_28.html
The first few Chebyshev polynomials are, T_0(x) = 1, T_1(x) = x, T_2(x) = 2 x^2 - 1. The functions described in this chapter are declared in the header file `gsl_chebyshev.h'. The gsl_cheb_series struct. A Chebyshev series is stored using the following structure,
Math::GSL::Chebyshev - Univariate Chebyshev Series ...
metacpan.org › pod › Math::GSL::Chebyshev
Univariate Chebyshev Series Approximation. NAME; SYNOPSIS; DESCRIPTION; AUTHORS; COPYRIGHT AND LICENSE; NAME. Math::GSL::Chebyshev - Univariate Chebyshev Series ...
Computational Technologies: A First Course
https://books.google.no › books
3 #include <gsl/gsl_chebyshev.h> Listing 5.106. ... for working with the functions of Chebyshev approximations: Now we set the function similar to the pulse ...
Math::GSL - Univariate Chebyshev Series Approximation
https://metacpan.org › pod › Math:...
use Math::GSL::Chebyshev qw/:all/ ;. my $cheb = gsl_cheb_alloc(40);. my $function = sub { sin ( cos ( $_ [0])) };. gsl_cheb_init( $cheb , $function , 0, ...
Bayesian-Source--seperation-CMB/gsl_chebyshev.h at master ...
https://github.com/.../blob/master/gsl_chebyshev.h
Contribute to premvilas30/Bayesian-Source--seperation-CMB development by creating an account on GitHub.
Chebyshev Approximations - GNU Scientific Library
http://gnu.ist.utl.pt › gsl › html_node
A Chebyshev approximation is a truncation of the series f(x) = \sum c_n T_n(x), where the Chebyshev polynomials T_n(x) = \cos(n \arccos x) provide an orthogonal ...
GNU Scientific Library — GSL 2.7 documentation
www.gnu.org › software › gsl
Mathematical Constants. Infinities and Not-a-number. Elementary Functions. Small integer powers. Testing the Sign of Numbers. Testing for Odd and Even Numbers. Maximum and Minimum functions. Approximate Comparison of Floating Point Numbers. Complex Numbers.
gsl/chebyshev.h at master · ampl/gsl - GitHub
https://github.com › blob › specfunc
GNU Scientific Library with CMake build support and AMPL bindings - gsl/chebyshev.h at master · ampl/gsl.
gsl: cheb/gsl_chebyshev.h Source File - doxygen documentation ...
fossies.org › dox › gsl-2
About: GSL (GNU Scientific Library) is a numerical library for C and C++ programmers. Fossies Dox : gsl-2.7.1.tar.gz ("unofficial" and yet experimental doxygen-generated source code documentation)
GSL中的切比雪夫逼近_yxmlhc的专栏-CSDN博客
https://blog.csdn.net/yxmlhc/article/details/120583439
03.10.2021 · 前几个切比雪夫多项式是,T0(x) = 1, T1(x) = x, T2(x) = 2x2−1。更多信息,请参阅第22章Abramowitz和Stegun。 本章描述的函数声明在头文件gsl_chebyshev.h中。32.1 定 …
garlic/gsl_chebyshev.h at master · szpiech/garlic · GitHub
https://github.com/szpiech/garlic/blob/master/include/gsl/gsl_chebyshev.h
Genomic Autozygosity Regions Likelihood Inference and Classification - garlic/gsl_chebyshev.h at master · szpiech/garlic
Chebyshev Approximations — GSL 2.7 documentation
www.gnu.org/software/gsl/doc/html/cheb.html
Chebyshev Approximations¶. This chapter describes routines for computing Chebyshev approximations to univariate functions. A Chebyshev approximation is a truncation of the series , where the Chebyshev polynomials provide an orthogonal basis of polynomials on the interval with the weight function .The first few Chebyshev polynomials are, ,
GNU Scientific Library -- Reference Manual - Chebyshev ...
irtfweb.ifa.hawaii.edu › SoftwareDocs › gsl
The first few Chebyshev polynomials are, T_0(x) = 1, T_1(x) = x, T_2(x) = 2 x^2 - 1. The functions described in this chapter are declared in the header file `gsl_chebyshev.h'. The gsl_cheb_series struct. A Chebyshev series is stored using the following structure,