Code Monkey home page Code Monkey logo

lolremez's Introduction

LolRemez

A Remez algorithm implementation to approximate functions using polynomials.

A tutorial is available in the wiki section.

Build instructions are available below.

Example

Approximate atan(sqrt(3+x³)-exp(1+x)) over the range [sqrt(2),pi²] with a 5th degree polynomial for double floats:

lolremez --double -d 5 -r "sqrt(2):pi²" "atan(sqrt(3+x³)-exp(1+x))"

Result:

/* Approximation of f(x) = atan(sqrt(3+x³)-exp(1+x))
 * on interval [ sqrt(2), pi² ]
 * with a polynomial of degree 5. */
double f(double x)
{
    double u = -3.9557569330471555e-5;
    u = u * x + 1.2947712130833294e-3;
    u = u * x + -1.6541397035559147e-2;
    u = u * x + 1.0351664953941214e-1;
    u = u * x + -3.2051562487328135e-1;
    return u * x + -1.1703528319321961;
}

Available functions

Binary functions/operators:

  • + - * / %
  • atan2(y, x), pow(x, y)
  • min(x, y), max(x, y)
  • fmod(x, y)

Exponent shortcuts:

  • ,

Constants:

Math functions:

  • abs() (absolute value)
  • sqrt() (square root), cbrt() (cubic root)
  • exp(), exp2(), erf(), log(), log2(), log10()
  • sin(), cos(), tan()
  • asin(), acos(), atan()
  • sinh(), cosh(), tanh()

Parsing rules:

  • -a^b is -(a^b)
  • a^b^c is (a^b)^c

Build LolRemez

Setup

If you got the source code from Git, make sure the submodules are properly initialised:

git submodule update --init --recursive

On Windows, just open lolremez.sln in Visual Studio.

On Linux, make sure the following packages are installed:

automake autoconf libtool pkg-config

Compile

On Windows, just build the solution in Visual Studio.

On Linux, bootstrap the project and configure it:

./bootstrap
./configure

Finally, build the project:

make

The resulting executable is lolremez. You can manually copy it to any installation location, or run the following:

sudo make install

Changes

News for LolRemez 0.6:

  • Fix a grave problem with extrema finding when using a weight function; results were suboptimal.
  • Switch to a header-only big float implementation that tremendously improves build times.
  • Print gnuplot-friendly formulas.

News for LolRemez 0.5:

  • Fix a severe bug in cbrt().
  • Implement erf().
  • Implement % and fmod().
  • Make the executable size even smaller.
  • lolremez can now also act as a simple command line calculator.

News for LolRemez 0.4:

  • Allow expressions in the range specification: -r -pi/4:pi/4 is now valid.
  • Allow using “pi” and “e” in expressions, as well as “π”.
  • Bugfixes in the expression parser.
  • Support for hexadecimal floats, e.g. 0x1.999999999999999ap-4.
  • New --float, --double and --long-double options to choose precision.
  • Trim down DLL dependencies to allow for lighter binaries.

News for LolRemez 0.3:

  • implemented an expression parser so that the user does not have to recompile the software before each use.
  • C/C++ function output.
  • use threading to find zeros and extrema.
  • use successive parabolic interpolation to find extrema.

News for LolRemez 0.2:

  • significant performance and accuracy improvements thanks to various bugfixes and a better extrema finder for the error function.
  • user can now define accuracy of the final result.
  • exp(), sin(), cos() and tan() are now about 20% faster.
  • multiplying a real number by an integer power of two is now a virtually free operation.
  • fixed a rounding bug in the real number printing routine.

Initial release: LolRemez 0.1

lolremez's People

Contributors

jylam avatar samhocevar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.