Skip to content

WebAssembly Cephes - Mathematical special functions in JavaScript

Using Emscripten to compile a WebAssembly version of Cephes, we finally have a fast and correct implementation of most mathematical special functions.

Introduction

A lot of the mathematical implementations we do at NearForm depends on so-called mathematical special functions . There is no clearly defined criteria for what a special function is, but suffice to say they are functions that often turn up in mathematics and most of them are notoriously hard to compute. Often they are defined as the solution to a well-posed problem. However the solution itself is not easy to compute.

JavaScript is severely lacking in implementations of these special functions, especially trusted implementations. If you are lucky, you can find a basic implementation in npm. However, the implementations often have numerous undocumented issues and only work somewhat well for a small and undocumented input range.

In R these functions are often built-in, and in Python, SciPy implements these functions.

Deep within the SciPy source code , we find the Cephes library which is what implements many of these functions.

Cephes is a pure C library, that doesn't depend on anything, including the C standard library . This makes it ideal to be compiled to WebAssembly using emscripten , as it means there won't be calls between JavaScript and WebAssembly which could otherwise cause performance issues.

We have released the WebAssembly version of Cephes on npm, see https://www.npmjs.com/package/cephes .

So all you need to do is to install it with npm install cephes .

Using our Cephes module is very simple, as we have wrapped each WebAssembly function in a custom JavaScript function that takes care of all the memory management.

Plain Text
const cephes = require('cephes');
const value = cephes.gamma(2);

Examples

Below are just a few examples of the 125 available functions. You can see all of them in our README file .

All of the values that make up the graph are calculated dynamically in your browser. This gives you an idea of just how fast Cephes in WebAssembly is.

1

The Bessel function is the solution to the equation The Bessel function is typically used in partial differential equations, where will often be a fixed integer.

2

The Gamma function is used in many probability distributions. As its value increases very quickly, it is often the function that is used in practice. Cephes has dedicated implementations for both. The DiGamma function , is its derivative and also appear frequently in probability theory.

3

The beta distribution is central in a lot of Bayesian statistics. The cumulative distribution function is notoriously hard to compute, but this function is also implemented by Cephes.

4

The Airy function is the solution to the differential equation It is often used in physics such as quantum mechanics. Cephes also defines it compimentary function and their derivatives and .

1 2 3 4 Mathematical special functions: shows various mathematical special functions. Try clicking the page numbers 1, 2, 3, or 4 to change the function.

Cephes as an Open Source project

Whilst Cephes lacks a general license, its author, Stephen L. Moshier, has kindly granted us permission to license it as BSD-3-Clause . Whilst the library continues to be maintained, it doesn't use some of the more modern approximation methods for many of the special functions.

The good news is that R and SciPy are working together on making a better Open Source library of these special functions . But it will take a while before that library is ready and until then Cephes is by far the best choice.

Contact

The mathematical special functions have so many use cases. If you think your business could benefit from math, such as statistics, logistics, or something else. Then please feel free to contact us .

Insight, imagination and expertly engineered solutions to accelerate and sustain progress.

Contact