|
Commons Math example source code file (PolynomialFunctionNewtonFormTest.java)
The Commons Math PolynomialFunctionNewtonFormTest.java source code/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.commons.math.analysis.polynomials; import org.apache.commons.math.MathException; import junit.framework.TestCase; /** * Testcase for Newton form of polynomial function. * <p> * The small tolerance number is used only to account for round-off errors. * * @version $Revision: 811685 $ $Date: 2009-09-05 13:36:48 -0400 (Sat, 05 Sep 2009) $ */ public final class PolynomialFunctionNewtonFormTest extends TestCase { /** * Test of polynomial for the linear function. */ public void testLinearFunction() throws MathException { PolynomialFunctionNewtonForm p; double coefficients[], z, expected, result, tolerance = 1E-12; // p(x) = 1.5x - 4 = 2 + 1.5(x-4) double a[] = { 2.0, 1.5 }; double c[] = { 4.0 }; p = new PolynomialFunctionNewtonForm(a, c); z = 2.0; expected = -1.0; result = p.value(z); assertEquals(expected, result, tolerance); z = 4.5; expected = 2.75; result = p.value(z); assertEquals(expected, result, tolerance); z = 6.0; expected = 5.0; result = p.value(z); assertEquals(expected, result, tolerance); assertEquals(1, p.degree()); coefficients = p.getCoefficients(); assertEquals(2, coefficients.length); assertEquals(-4.0, coefficients[0], tolerance); assertEquals(1.5, coefficients[1], tolerance); } /** * Test of polynomial for the quadratic function. */ public void testQuadraticFunction() throws MathException { PolynomialFunctionNewtonForm p; double coefficients[], z, expected, result, tolerance = 1E-12; // p(x) = 2x^2 + 5x - 3 = 4 + 3(x-1) + 2(x-1)(x+2) double a[] = { 4.0, 3.0, 2.0 }; double c[] = { 1.0, -2.0 }; p = new PolynomialFunctionNewtonForm(a, c); z = 1.0; expected = 4.0; result = p.value(z); assertEquals(expected, result, tolerance); z = 2.5; expected = 22.0; result = p.value(z); assertEquals(expected, result, tolerance); z = -2.0; expected = -5.0; result = p.value(z); assertEquals(expected, result, tolerance); assertEquals(2, p.degree()); coefficients = p.getCoefficients(); assertEquals(3, coefficients.length); assertEquals(-3.0, coefficients[0], tolerance); assertEquals(5.0, coefficients[1], tolerance); assertEquals(2.0, coefficients[2], tolerance); } /** * Test of polynomial for the quintic function. */ public void testQuinticFunction() throws MathException { PolynomialFunctionNewtonForm p; double coefficients[], z, expected, result, tolerance = 1E-12; // p(x) = x^5 - x^4 - 7x^3 + x^2 + 6x // = 6x - 6x^2 -6x^2(x-1) + x^2(x-1)(x+1) + x^2(x-1)(x+1)(x-2) double a[] = { 0.0, 6.0, -6.0, -6.0, 1.0, 1.0 }; double c[] = { 0.0, 0.0, 1.0, -1.0, 2.0 }; p = new PolynomialFunctionNewtonForm(a, c); z = 0.0; expected = 0.0; result = p.value(z); assertEquals(expected, result, tolerance); z = -2.0; expected = 0.0; result = p.value(z); assertEquals(expected, result, tolerance); z = 4.0; expected = 360.0; result = p.value(z); assertEquals(expected, result, tolerance); assertEquals(5, p.degree()); coefficients = p.getCoefficients(); assertEquals(6, coefficients.length); assertEquals(0.0, coefficients[0], tolerance); assertEquals(6.0, coefficients[1], tolerance); assertEquals(1.0, coefficients[2], tolerance); assertEquals(-7.0, coefficients[3], tolerance); assertEquals(-1.0, coefficients[4], tolerance); assertEquals(1.0, coefficients[5], tolerance); } /** * Test of parameters for the polynomial. */ public void testParameters() throws Exception { try { // bad input array length double a[] = { 1.0 }; double c[] = { 2.0 }; new PolynomialFunctionNewtonForm(a, c); fail("Expecting IllegalArgumentException - bad input array length"); } catch (IllegalArgumentException ex) { // expected } try { // mismatch input arrays double a[] = { 1.0, 2.0, 3.0, 4.0 }; double c[] = { 4.0, 3.0, 2.0, 1.0 }; new PolynomialFunctionNewtonForm(a, c); fail("Expecting IllegalArgumentException - mismatch input arrays"); } catch (IllegalArgumentException ex) { // expected } } } Other Commons Math examples (source code examples)Here is a short list of links related to this Commons Math PolynomialFunctionNewtonFormTest.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.