|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.jscience.mathematics.analysis.polynomials.OrthogonalDoublePolynomialFactory
org.jscience.mathematics.analysis.polynomials.JacobiDoublePolynomialFactory
public class JacobiDoublePolynomialFactory
This class implements Jacobi polynomials.
Jacobi polynomials can be defined by the following recurrence relations:
T0(X) = 1 T1(X) = [2(a+1)+(a+b+2)(x-1)]/2 2(n+1)(n+a+b+1)(2n+a+b)Tn+1(X) = [(2n+a+b+1)(a2-b2)+P(2n+a+b,3)X] Tn(X) - 2(n+a)(n+b)(2n+a+b+2)Tn-1(X)P(x,y) stands for Pochhammer series, see org.jscience.mathematics.series.PochhammerSeries.
| Constructor Summary | |
|---|---|
JacobiDoublePolynomialFactory(double a,
double b)
|
|
| Method Summary | |
|---|---|
double |
getA()
|
double |
getB()
|
Polynomial[] |
getFirstTermsPolynomials()
Initialize the recurrence coefficients for degree 0 and 1. |
DoublePolynomial |
getOrthogonalPolynomial(int degree)
Simple constructor. |
Field.Member[] |
getRecurrenceCoefficients(int k)
Initialize the recurrence coefficients. |
| Methods inherited from class org.jscience.mathematics.analysis.polynomials.OrthogonalDoublePolynomialFactory |
|---|
getOrthogonalPolynomialCoefficients |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public JacobiDoublePolynomialFactory(double a,
double b)
| Method Detail |
|---|
public double getA()
public double getB()
public DoublePolynomial getOrthogonalPolynomial(int degree)
getOrthogonalPolynomial in interface OrthogonalPolynomialFactorygetOrthogonalPolynomial in class OrthogonalDoublePolynomialFactorydegree - degree of the polynomial
public Polynomial[] getFirstTermsPolynomials()
getFirstTermsPolynomials in interface OrthogonalPolynomialFactorygetFirstTermsPolynomials in class OrthogonalDoublePolynomialFactorypublic Field.Member[] getRecurrenceCoefficients(int k)
getRecurrenceCoefficients in interface OrthogonalPolynomialFactorygetRecurrenceCoefficients in class OrthogonalDoublePolynomialFactoryk - index of the current step
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||