Skip to content

tk-yoshimura/DoubleDoubleDifferentiate

Repository files navigation

DoubleDoubleDifferentiate

Double-Double Numerical Differentiation Implements

Requirement

.NET 8.0
DoubleDouble

Install

Download DLL
Download Nuget

Usage

for (int derivative = 0; derivative <= 16; derivative++) {
    ddouble y = CenteredIntwayDifferential.Differentiate(ddouble.Exp, 0, derivative, 0.125);

    Console.WriteLine($"{derivative}\t{y}");
}

Licence

MIT

Author

T.Yoshimura