Skip to content

Convert a two-dimensional banded nested array to compact banded storage.

License

Notifications You must be signed in to change notification settings

stdlib-js/array-base-banded-to-compact

 
 

Repository files navigation

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

toCompact

NPM version Build Status Coverage Status

Convert a two-dimensional banded nested array to compact banded storage.

Usage

To use in Observable,

toCompact = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-banded-to-compact@umd/browser.js' )

To vendor stdlib functionality and avoid installing dependency trees for Node.js, you can use the UMD server build:

var toCompact = require( 'path/to/vendor/umd/array-base-banded-to-compact/index.js' )

To include the bundle in a webpage,

<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/array-base-banded-to-compact@umd/browser.js"></script>

If no recognized module system is present, access bundle contents via the global scope:

<script type="text/javascript">
(function () {
    window.toCompact;
})();
</script>

toCompact( arr, ku, kl, colexicographic )

Converts a two-dimensional banded nested array to compact banded storage.

var x = [ [ -1, 2, 0 ], [ 2, -2, 4 ], [ 0, 4, -3 ] ];

var out = toCompact( x, 1, 1, false );
// returns [ [ 0, 2, 4 ], [ -1, -2, -3 ], [ 2, 4, 0 ] ]

The function accepts the following arguments:

  • arr: input two-dimensional nested array.
  • ku: number of super-diagonals.
  • kl: number of sub-diagonals.
  • colexicographic: boolean specifying whether to store diagonals in colexicographic access order.

Examples

<!DOCTYPE html>
<html lang="en">
<body>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/array-base-banded-to-compact@umd/browser.js"></script>
<script type="text/javascript">
(function () {

// Define a banded matrix:
var A = [
    [  1,  2,  3,   0,  0 ],
    [ -2,  4,  5,   6,  0 ],
    [ -3, -5,  7,   8,  9 ],
    [  0, -6, -8,  10, 11 ],
    [  0,  0, -9, -11, 12 ]
];

// Convert the matrix to lexicographic compact form:
var AC = toCompact( A, 2, 2, false );
/* e.g., returns =>
    [
        [  0,  0,  3,   6,  9 ],
        [  0,  2,  5,   8, 11 ],
        [  1,  4,  7,  10, 12 ],
        [ -2, -5, -8, -11,  0 ],
        [ -3, -6, -9,   0,  0 ]
    ]
*/

AC = toCompact( A, 2, 1, false );
/* e.g., returns =>
    [
        [  0,  0,  3,   6,  9 ],
        [  0,  2,  5,   8, 11 ],
        [  1,  4,  7,  10, 12 ],
        [ -2, -5, -8, -11,  0 ]
    ]
*/

AC = toCompact( A, 1, 2, false );
/* e.g., returns =>
    [
        [  0,  2,  5,   8, 11 ],
        [  1,  4,  7,  10, 12 ],
        [ -2, -5, -8, -11,  0 ],
        [ -3, -6, -9,   0,  0 ]
    ]
*/

// Convert the matrix to colexicographic compact form:
AC = toCompact( A, 2, 2, true );
/* e.g., returns =>
    [
        [ 0,  0,  1,  -2, -3 ],
        [ 0,  2,  4,  -5, -6 ],
        [ 3,  5,  7,  -8, -9 ],
        [ 6,  8, 10, -11,  0 ],
        [ 9, 11, 12,   0,  0 ]
    ]
*/

})();
</script>
</body>
</html>

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-2025. The Stdlib Authors.