Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 735 Bytes

File metadata and controls

27 lines (19 loc) · 735 Bytes

DoubleDoubleDifferentiate

Double-Double Numerical Differentiation Implements

Requirement

.NET 10.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