tk-yoshimura / DoubleDoubleRootFinding

DoubleDouble Root Finding Method Implements

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DoubleDoubleRootFinding

DoubleDouble Root Finding Method Implements

Requirement

.NET 8.0
DoubleDouble

Install

Download DLL
Download Nuget

Usage

// Newton-Raphson Method: solve x for x^3 = 2
static (ddouble v, ddouble d) f(ddouble x) {
    return (x * x * x - 2, 3 * x * x);
}

NewtonRaphsonFinder.RootFind(f, x0: 2);

Licence

MIT

Author

T.Yoshimura

About

DoubleDouble Root Finding Method Implements

License:MIT License


Languages

Language:C# 100.0%