npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@stdlib/math-base-special-ellipj

v0.3.1

Published

Compute the Jacobi elliptic functions sn, cn, and dn.

Downloads

33

Readme

ellipj

NPM version Build Status Coverage Status

Compute the Jacobi elliptic functions sn, cn, and dn.

The Jacobi elliptic functions may be defined as the inverse of the incomplete elliptic integral of the first kind. Accordingly, they compute the value φ which satisfies the equation

where the parameter m is related to the modulus k by m = k^2.

Installation

npm install @stdlib/math-base-special-ellipj

Usage

var ellipj = require( '@stdlib/math-base-special-ellipj' );

ellipj( u, m )

Computes the Jacobi elliptic functions functions sn, cn, and dn, and the Jacobi amplitude am.

var v = ellipj( 0.3, 0.5 );
// returns [ ~0.293, ~0.956, ~0.978, ~0.298 ]

v = ellipj( 0.0, 0.0 );
// returns [ ~0.0, ~1.0, ~1.0, ~0.0 ]

v = ellipj( Infinity, 1.0 );
// returns [ ~1.0, ~0.0, ~0.0, ~1.571 ]

v = ellipj( 0.0, -2.0 );
// returns [ ~0.0, ~1.0, ~1.0, NaN ]

v = ellipj( NaN, NaN );
// returns [ NaN, NaN, NaN, NaN ]

ellipj.assign( u, m, out, stride, offset )

Computes the Jacobi elliptic functions sn, cn, dn, and Jacobi amplitude am and assigns results to a provided output array.

var Float64Array = require( '@stdlib/array-float64' );

var out = new Float64Array( 4 );

var v = ellipj.assign( 0.0, 0.0, out, 1, 0 );
// returns <Float64Array>[ ~0.0, ~1.0, ~1.0, ~0.0 ]

var bool = ( v === out );
// returns true

ellipj.sn( u, m )

Computes the Jacobi elliptic function sn of value u with modulus m.

var v = ellipj.sn( 0.3, 0.5 );
// returns ~0.293

ellipj.cn( u, m )

Computes the Jacobi elliptic function cn of value u with modulus m.

var v = ellipj.cn( 0.3, 0.5 );
// returns ~0.956

ellipj.dn( u, m )

Computes the Jacobi elliptic function dn of value u with modulus m.

var v = ellipj.dn( 0.3, 0.5 );
// returns ~0.978

ellipj.am( u, m )

Computes the Jacobi amplitude am of value u with modulus m.

var v = ellipj.am( 0.3, 0.5 );
// returns ~0.298

v = ellipj.am( 0.3, 2.0 );
// returns NaN

Although sn, cn, and dn may be computed for -∞ < m < ∞, the domain of am is 0 ≤ m ≤ 1. For m < 0 or m > 1, the function returns NaN.

Notes

  • Functions sn, cn, and dn are valid for -∞ < m < ∞. Values for m < 0 or m > 1 are computed in terms of Jacobi elliptic functions with 0 < m < 1 via the transformations outlined in Equations 16.13 and 16.15 from The Handbook of Mathematical Functions (Abramowitz and Stegun).
  • If more than one of sn, cn, dn, or am is to be computed, preferring using ellipj to compute all four values simultaneously.

Examples

var linspace = require( '@stdlib/array-base-linspace' );
var ellipk = require( '@stdlib/math-base-special-ellipk' );
var ellipj = require( '@stdlib/math-base-special-ellipj' );

var m = 0.7;
var u = linspace( 0.0, ellipk( m ), 100 );

var out;
var i;
for ( i = 0; i < 100; i++ ) {
    out = ellipj( u[ i ], m );
    console.log( 'sn(%d, %d) = %d', u[ i ], m, out[ 0 ] );
    console.log( 'cn(%d, %d) = %d', u[ i ], m, out[ 1 ] );
    console.log( 'dn(%d, %d) = %d', u[ i ], m, out[ 2 ] );
    console.log( 'am(%d, %d) = %d', u[ i ], m, out[ 3 ] );
}

References

  • Fukushima, Toshio. 2009. "Fast computation of complete elliptic integrals and Jacobian elliptic functions." Celestial Mechanics and Dynamical Astronomy 105 (4): 305. doi:10.1007/s10569-009-9228-z.
  • Fukushima, Toshio. 2015. "Precise and fast computation of complete elliptic integrals by piecewise minimax rational function approximation." Journal of Computational and Applied Mathematics 282 (July): 71–76. doi:10.1016/j.cam.2014.12.038.

See Also


Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2024. The Stdlib Authors.