⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 univariaterealsolverfactoryimpl.java

📁 Apache的common math数学软件包
💻 JAVA
字号:
/* * 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;/** * A concrete {@link  UnivariateRealSolverFactory}.  This is the default solver factory * used by commons-math. * <p> * The default solver returned by this factory is a {@link BrentSolver}.</p> * * @version $Revision: 615734 $ $Date: 2008-01-27 23:10:03 -0700 (Sun, 27 Jan 2008) $ */public class UnivariateRealSolverFactoryImpl extends UnivariateRealSolverFactory {            /**     * Default constructor.     */    public UnivariateRealSolverFactoryImpl() {    }    /**     * Create a new {@link UnivariateRealSolver} for the given function.  The     * actual solver returned is determined by the underlying factory.     *      * This factory returns a {@link BrentSolver} instance.     *     * @param f the function.     * @return the new solver.     */    public UnivariateRealSolver newDefaultSolver(UnivariateRealFunction f) {        return newBrentSolver(f);    }        /**     * Create a new {@link UnivariateRealSolver} for the given function.  The     * solver is an implementation of the bisection method.     * @param f the function.     * @return the new solver.     */    public UnivariateRealSolver newBisectionSolver(UnivariateRealFunction f) {        return new BisectionSolver(f);    }    /**     * Create a new {@link UnivariateRealSolver} for the given function.  The     * solver is an implementation of the Brent method.     * @param f the function.     * @return the new solver.     */    public UnivariateRealSolver newBrentSolver(UnivariateRealFunction f) {        return new BrentSolver(f);    }        /**     * Create a new {@link UnivariateRealSolver} for the given function.  The     * solver is an implementation of Newton's Method.     * @param f the function.     * @return the new solver.     */    public UnivariateRealSolver newNewtonSolver(        DifferentiableUnivariateRealFunction f) {                return new NewtonSolver(f);    }        /**     * Create a new {@link UnivariateRealSolver} for the given function.  The     * solver is an implementation of the secant method.     * @param f the function.     * @return the new solver.     */    public UnivariateRealSolver newSecantSolver(UnivariateRealFunction f) {        return new SecantSolver(f);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -