OptimalPoly icon indicating copy to clipboard operation
OptimalPoly copied to clipboard

Generates MinMax polynomial approximations of functions. Stable implementation of the Remez Algorithm using multi-precision arithmetic. Also does C/C++ code generation!

Results 2 OptimalPoly issues
Sort by recently updated
recently updated
newest added

By setting the first and last points in the extremum array to the start and end of the bound, the minimax polynomial will only be produced in cases where the...

``` [/usr/local/lib/python3.7/dist-packages/mpmath/matrices/linalg.py](https://localhost:8080/#) in lu_solve(ctx, A, b, **kwargs) 224 else: 225 # LU factorization --> 226 A, p = ctx.LU_decomp(A) 227 b = ctx.L_solve(A, b, p) 228 x = ctx.U_solve(A, b)...