com.opengamma.strata.math.impl.function.special.LegendrePolynomialFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of strata-math Show documentation
Show all versions of strata-math Show documentation
Mathematic support for Strata
/*
* Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.strata.math.impl.function.special;
import com.opengamma.strata.collect.ArgChecker;
import com.opengamma.strata.collect.tuple.Pair;
import com.opengamma.strata.math.impl.function.DoubleFunction1D;
/**
*
*/
public class LegendrePolynomialFunction extends OrthogonalPolynomialFunctionGenerator {
@Override
public DoubleFunction1D[] getPolynomials(int n) {
ArgChecker.isTrue(n >= 0);
DoubleFunction1D[] polynomials = new DoubleFunction1D[n + 1];
for (int i = 0; i <= n; i++) {
if (i == 0) {
polynomials[i] = getOne();
} else if (i == 1) {
polynomials[i] = getX();
} else {
polynomials[i] = (polynomials[i - 1]
.multiply(getX())
.multiply(2 * i - 1)
.subtract(polynomials[i - 2].multiply(i - 1))).multiply(1. / i);
}
}
return polynomials;
}
@Override
public Pair[] getPolynomialsAndFirstDerivative(int n) {
ArgChecker.isTrue(n >= 0);
@SuppressWarnings("unchecked")
Pair[] polynomials = new Pair[n + 1];
DoubleFunction1D p, dp;
for (int i = 0; i <= n; i++) {
if (i == 0) {
polynomials[i] = Pair.of(getOne(), getZero());
} else if (i == 1) {
polynomials[i] = Pair.of(getX(), getOne());
} else {
p = (polynomials[i - 1].getFirst()
.multiply(getX())
.multiply(2 * i - 1)
.subtract(polynomials[i - 2].getFirst().multiply(i - 1))).multiply(1. / i);
dp = p.derivative();
polynomials[i] = Pair.of(p, dp);
}
}
return polynomials;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy