There are 0 repository under root-finding-methods topic.
Library for finding the roots of a function using interval arithmetic
One of the most complete fractal generating software using java!
MATLAB/Octave Codes for Numerical analysis techniques
This is a Git repository containing code for a numerical analysis lab using Fortran and MATLAB
Numerical techniques for optimization of artificial Intelligence
collection of numerical optimization methods
Various numerical methods are discussed to solve different problems numerically.
Collection of methods for numerical analysis and scientific computing, including numerical root-finders, numerical integration, linear algebra, and data visualization. Created for APPM4600 at CU Boulder.
Python Transcendental Equation Solvers
Semi-automated root finding, Interpolation, Gauss Elimination method, LU Decomposition, Linear Algebra, Numerical Analysis - integration, differentiation, Newton cotes, Monte Carlo, Ordinary Differential Equation (ODE) solver, Curve Fitting, Signal Processing, Convolution, Correlation, Fourier Transform, Search Methods and many more
Numerical methods and solutions
Numerical Analysis course repository.
A Mathematica package by the name 'Polynomial adaptive cellular automata' to get the quasi-normal modes for the particles oscillating in the background of a black hole.
Chebyshev-proxy Rootfinding based on J. Boyd (2013 and 2014). This repository is intended for educational use and isn't really a standalone package; however, the implementation may be enlightening for someone wishing to reimplement the CPR algorithm.
Functions for numerical analysis methods - Bisection, False-Position, Newton-Raphson, Secant Method, Brent's Method
Laboratory Work Numerical Analysis nr.1 at TUM. Mainly, this laboratory work was dedicated to Numerical Root Finding Methods, and consists of 5 tasks that I have done.
Laboratory Work Numerical Analysis nr.3 at TUM. Mainly, this laboratory work was dedicated to Numerical Root Finding Methods for Systems of Linear Equations, Eigenvalues and Eigenvectors, Numerical Methods for ODEs, and consists of 3 tasks that I have done.
General-purpose equation solver (up to the 4th order) which is fast and easy to use. Unit-tested.
implementing some of the householder's root finding class of methods
C++ program to visualize convergence of the fixed-point iteration method
É um programa implementado na linguagem Python que busca raízes de uma função com os métodos de Newton-Raphson e Bisseção.
Implementation of mathematical methods using python
The algorithms for the root-finding methods.
Bisection Method to calculate root of a function
Based on our recent pre-print https://arxiv.org/abs/2509.20897 and published version in International Journal of Computer Mathematics.
Implementation and usage of numerical root-finding algorithms.
Engineering Computational Analysis Homework 01
Some numerical analysis algorithms, from scratch, written in Octave
Online tool for computing roots using specific starting points, precisions, and numerical methods
A collection of projects/labs I did for a numerical methods course in my sophomore year
Project for DATA130010 Numerical Analysis
The behaviour of general root-finding algorithms is studied in numerical analysis. How-ever, for polynomials, root-finding study belongs generally to computer algebra, sincealgebraic properties of polynomials are fundamental for the most efficient algorithms. The efficiency of an algorithm may depend dramatically on the characteristics of the given functions. For example, many algorithms use the derivative of the input function,while others work on every continuous function. In general, numerical algorithms are not guaranteed to find all the roots of a function, so failing to find a root does not prove that there is no root. However, for polynomials, there are specific algorithms that use algebraic properties for certifying that no root is missed, and locating the roots in separate intervals(or disks for complex roots) that are small enough to ensure the convergence of numerical methods (typically Newton’s method) to the unique root so located.