@stdlib/ndarray-base

Base ndarray.

https://github.com/stdlib-js/ndarray-base

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.0%) to scientific vocabulary

Keywords

array base buffer data javascript matrix multidimensional namespace ndarray node node-js nodejs ns stdlib structures types vector
Last synced: 6 months ago · JSON representation ·

Repository

Base ndarray.

Basic Info
Statistics
  • Stars: 1
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
array base buffer data javascript matrix multidimensional namespace ndarray node node-js nodejs ns stdlib structures types vector
Created over 4 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security

README.md

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!

Base

NPM version Build Status Coverage Status <!-- dependencies -->

Base ndarray.

## Installation ```bash npm install @stdlib/ndarray-base ``` Alternatively, - To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]). - If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions). - For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]). The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships. To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
## Usage ```javascript var ns = require( '@stdlib/ndarray-base' ); ``` #### ns Base ndarray. ```javascript var o = ns; // returns {...} ```
- [`assign( arrays )`][@stdlib/ndarray/base/assign]: assign elements in an input ndarray to elements in an output ndarray. - [`binaryLoopOrder( shape, stridesX, stridesY, stridesZ )`][@stdlib/ndarray/base/binary-loop-interchange-order]: reorder ndarray dimensions and associated strides for loop interchange. - [`binaryOutputDataType( xdtype, ydtype, policy )`][@stdlib/ndarray/base/binary-output-dtype]: resolve the output ndarray data type for a binary function. - [`binaryBlockSize( dtypeX, dtypeY, dtypeZ )`][@stdlib/ndarray/base/binary-tiling-block-size]: resolve a loop block size for multi-dimensional array tiled loops. - [`binary( arrays, fcn )`][@stdlib/ndarray/base/binary]: apply a binary callback to elements in input ndarrays and assign results to elements in an output ndarray. - [`bind2vind( shape, strides, offset, order, idx, mode )`][@stdlib/ndarray/base/bind2vind]: convert a linear index in an underlying data buffer to a linear index in an array view. - [`broadcastArray( arr, shape )`][@stdlib/ndarray/base/broadcast-array]: broadcast an ndarray to a specified shape. - [`broadcastArrays( arrays )`][@stdlib/ndarray/base/broadcast-arrays]: broadcast ndarrays to a common shape. - [`broadcastScalar( value, dtype, shape, order )`][@stdlib/ndarray/base/broadcast-scalar]: broadcast a scalar value to an `ndarray` having a specified shape. - [`broadcastShapes( shapes )`][@stdlib/ndarray/base/broadcast-shapes]: broadcast array shapes to a single shape. - [`bufferCtors( dtype )`][@stdlib/ndarray/base/buffer-ctors]: ndarray data buffer constructors. - [`bufferDataTypeEnum( buffer )`][@stdlib/ndarray/base/buffer-dtype-enum]: return the data type enumeration constant of an ndarray data buffer. - [`bufferDataType( buffer )`][@stdlib/ndarray/base/buffer-dtype]: return the data type of an ndarray data buffer. - [`buffer( dtype, size )`][@stdlib/ndarray/base/buffer]: create a contiguous linear ndarray data buffer. - [`bytesPerElement( dtype )`][@stdlib/ndarray/base/bytes-per-element]: return the number of bytes per element provided an underlying array data type. - [`char2dtype( [ch] )`][@stdlib/ndarray/base/char2dtype]: return the data type string associated with a provided single letter character abbreviation. - [`clampIndex( idx, max )`][@stdlib/ndarray/base/clamp-index]: restrict an index to the interval `[0,max]`. - [`countFalsy( arrays )`][@stdlib/ndarray/base/count-falsy]: count the number of falsy elements in an ndarray. - [`countIf( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/count-if]: count the number of elements in an ndarray which pass a test implemented by a predicate function. - [`countTruthy( arrays )`][@stdlib/ndarray/base/count-truthy]: count the number of truthy elements in an ndarray. - [`ndarray( dtype, buffer, shape, strides, offset, order )`][@stdlib/ndarray/base/ctor]: create a multidimensional array. - [`data( x )`][@stdlib/ndarray/base/data-buffer]: return the underlying data buffer of a provided ndarray. - [`dtypeChar( [dtype] )`][@stdlib/ndarray/base/dtype-char]: return the single letter abbreviation for an underlying array data type. - [`dtypeDesc( [dtype] )`][@stdlib/ndarray/base/dtype-desc]: return the description for a specified data type. - [`dtypeEnum2Str( dtype )`][@stdlib/ndarray/base/dtype-enum2str]: return the data type string associated with an ndarray data type enumeration constant. - [`dtypeResolveEnum( dtype )`][@stdlib/ndarray/base/dtype-resolve-enum]: return the enumeration constant associated with a supported ndarray data type value. - [`dtypeResolveStr( dtype )`][@stdlib/ndarray/base/dtype-resolve-str]: return the data type string associated with a supported ndarray data type value. - [`dtypeStr2Enum( dtype )`][@stdlib/ndarray/base/dtype-str2enum]: return the enumeration constant associated with an ndarray data type string. - [`dtype( x )`][@stdlib/ndarray/base/dtype]: return the data type of a provided ndarray. - [`dtype2c( dtype )`][@stdlib/ndarray/base/dtype2c]: return the C data type associated with a provided data type value. - [`dtypes2signatures( dtypes, nin, nout )`][@stdlib/ndarray/base/dtypes2signatures]: transform a list of array argument data types into a list of signatures. - [`emptyLike( x )`][@stdlib/ndarray/base/empty-like]: create an uninitialized ndarray having the same shape and data type as a provided ndarray. - [`empty( dtype, shape, order )`][@stdlib/ndarray/base/empty]: create an uninitialized ndarray having a specified shape and data type. - [`everyBy( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/every-by]: test whether all elements in an ndarray pass a test implemented by a predicate function. - [`every( arrays )`][@stdlib/ndarray/base/every]: test whether every element in an ndarray is truthy. - [`expandDimensions( x, axis )`][@stdlib/ndarray/base/expand-dimensions]: expand the shape of an array by inserting a new dimension of size one at a specified axis. - [`fillBy( x, fcn[, thisArg] )`][@stdlib/ndarray/base/fill-by]: fill an input ndarray according to a callback function. - [`fill( x, value )`][@stdlib/ndarray/base/fill]: fill an input ndarray with a specified value. - [`flag( x, name )`][@stdlib/ndarray/base/flag]: return a specified flag for a provided ndarray. - [`flags( x, copy )`][@stdlib/ndarray/base/flags]: return the flags of a provided ndarray. - [`fliplr( x, writable )`][@stdlib/ndarray/base/fliplr]: return a view of an input ndarray in which the order of elements along the last dimension is reversed. - [`flipud( x, writable )`][@stdlib/ndarray/base/flipud]: return a view of an input ndarray in which the order of elements along the second-to-last dimension is reversed. - [`forEach( arrays, fcn[, thisArg] )`][@stdlib/ndarray/base/for-each]: invoke a callback function once for each ndarray element. - [`scalar2ndarrayLike( x, value )`][@stdlib/ndarray/base/from-scalar-like]: convert a scalar value to a zero-dimensional ndarray having the same data type as a provided ndarray. - [`scalar2ndarray( value, dtype, order )`][@stdlib/ndarray/base/from-scalar]: convert a scalar value to a zero-dimensional ndarray. - [`includes( arrays )`][@stdlib/ndarray/base/includes]: test whether an ndarray contains a specified value. - [`ind( idx, max, mode )`][@stdlib/ndarray/base/ind]: return an index given an index mode. - [`ind2sub( shape, strides, offset, order, idx, mode )`][@stdlib/ndarray/base/ind2sub]: convert a linear index to an array of subscripts. - [`iterationOrder( strides )`][@stdlib/ndarray/base/iteration-order]: given a stride array, determine array iteration order. - [`loopOrder( shape, strides )`][@stdlib/ndarray/base/loop-interchange-order]: reorder ndarray dimensions and associated strides for loop interchange. - [`map( arrays, fcn[, thisArg] )`][@stdlib/ndarray/base/map]: apply a callback function to elements in an input ndarray and assign results to elements in an output ndarray. - [`maxViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/max-view-buffer-index]: compute the maximum linear index in an underlying data buffer accessible to an array view. - [`maybeBroadcastArray( arr, shape )`][@stdlib/ndarray/base/maybe-broadcast-array]: broadcast an ndarray to a specified shape if and only if the specified shape differs from the provided ndarray's shape. - [`maybeBroadcastArrays( arrays )`][@stdlib/ndarray/base/maybe-broadcast-arrays]: broadcast ndarrays to a common shape. - [`metaDataProps( meta, dtypes, obj )`][@stdlib/ndarray/base/meta-data-props]: define non-enumerable read-only properties which expose ndarray function meta data. - [`minSignedIntegerDataType( value )`][@stdlib/ndarray/base/min-signed-integer-dtype]: determine the minimum ndarray data type for storing a provided signed integer value. - [`minUnsignedIntegerDataType( value )`][@stdlib/ndarray/base/min-unsigned-integer-dtype]: determine the minimum ndarray data type for storing a provided unsigned integer value. - [`minViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/min-view-buffer-index]: compute the minimum linear index in an underlying data buffer accessible to an array view. - [`minmaxViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/minmax-view-buffer-index]: compute the minimum and maximum linear indices in an underlying data buffer which are accessible to an array view. - [`ndarraylike2ndarray( x )`][@stdlib/ndarray/base/ndarraylike2ndarray]: convert an ndarray-like object to an `ndarray`. - [`ndarraylike2object( x )`][@stdlib/ndarray/base/ndarraylike2object]: convert an `ndarray`-like object to an object likely to have the same "shape". - [`ndarraylike2scalar( x )`][@stdlib/ndarray/base/ndarraylike2scalar]: convert an ndarray-like object to a scalar value. - [`ndims( x )`][@stdlib/ndarray/base/ndims]: return the number of ndarray dimensions. - [`nextCartesianIndex( shape, order, idx, dim )`][@stdlib/ndarray/base/next-cartesian-index]: return the next Cartesian index (i.e., set of subscripts/dimension indices). - [`nonsingletonDimensions( shape )`][@stdlib/ndarray/base/nonsingleton-dimensions]: return the number of non-singleton dimensions. - [`normalizeIndex( idx, max )`][@stdlib/ndarray/base/normalize-index]: normalize an index to the interval `[0,max]`. - [`normalizeIndices( indices, max )`][@stdlib/ndarray/base/normalize-indices]: normalize a list of indices to the interval `[0,max]`. - [`nullaryLoopOrder( shape, stridesX )`][@stdlib/ndarray/base/nullary-loop-interchange-order]: reorder ndarray dimensions and associated strides for loop interchange. - [`nullaryBlockSize( dtypeX )`][@stdlib/ndarray/base/nullary-tiling-block-size]: resolve a loop block size for multi-dimensional array tiled loops. - [`nullary( arrays, fcn )`][@stdlib/ndarray/base/nullary]: apply a nullary callback and assign results to elements in an output ndarray. - [`numelDimension( x, dim )`][@stdlib/ndarray/base/numel-dimension]: return the size (i.e., number of elements) of a specified dimension for a provided ndarray. - [`numel( shape )`][@stdlib/ndarray/base/numel]: return the number of elements in an array. - [`offset( x )`][@stdlib/ndarray/base/offset]: return the index offset specifying the underlying buffer index of the first iterated ndarray element. - [`order( x )`][@stdlib/ndarray/base/order]: return the layout order of a provided ndarray. - [`outputDataType( dtypes, policy )`][@stdlib/ndarray/base/output-dtype]: resolve the output ndarray data type from a list of input ndarray data types. - [`outputPolicyEnum2Str( policy )`][@stdlib/ndarray/base/output-policy-enum2str]: return the policy string associated with an output ndarray data type policy enumeration constant. - [`outputPolicyResolveEnum( policy )`][@stdlib/ndarray/base/output-policy-resolve-enum]: return the enumeration constant associated with a supported ndarray data type policy value. - [`outputPolicyResolveStr( dtype )`][@stdlib/ndarray/base/output-policy-resolve-str]: return the policy string associated with a supported ndarray data type policy value. - [`outputPolicyStr2Enum( policy )`][@stdlib/ndarray/base/output-policy-str2enum]: return the enumeration constant associated with an output ndarray data type policy string. - [`prependSingletonDimensions( x, n )`][@stdlib/ndarray/base/prepend-singleton-dimensions]: prepend singleton dimensions. - [`promoteDataTypes( dtypes )`][@stdlib/ndarray/base/promote-dtypes]: resolve the data type that results from applying promotion rules to a provided list of data types. - [`removeSingletonDimensions( x )`][@stdlib/ndarray/base/remove-singleton-dimensions]: remove singleton dimensions. - [`reverseDimension( x, dim, writable )`][@stdlib/ndarray/base/reverse-dimension]: return a view of an input ndarray in which the order of elements along a specified dimension is reversed. - [`reverse( x, writable )`][@stdlib/ndarray/base/reverse]: return a view of an input ndarray in which the order of elements along each dimension is reversed. - [`serializeMetaData( x )`][@stdlib/ndarray/base/serialize-meta-data]: serialize ndarray meta data. - [`shape( x, copy )`][@stdlib/ndarray/base/shape]: return the shape of a provided ndarray. - [`shape2strides( shape, order )`][@stdlib/ndarray/base/shape2strides]: generate a stride array from an array shape. - [`singletonDimensions( shape )`][@stdlib/ndarray/base/singleton-dimensions]: return the number of singleton dimensions. - [`sliceAssign( x, y, slice, strict )`][@stdlib/ndarray/base/slice-assign]: assign element values from a broadcasted input `ndarray` to corresponding elements in an output `ndarray` view. - [`sliceDimensionFrom( x, dim, start, strict, writable )`][@stdlib/ndarray/base/slice-dimension-from]: return a shifted view of an input ndarray along a specified dimension. - [`sliceDimensionTo( x, dim, stop, strict, writable )`][@stdlib/ndarray/base/slice-dimension-to]: return a truncated view of an input ndarray along a specified dimension. - [`sliceDimension( x, dim, slice, strict, writable )`][@stdlib/ndarray/base/slice-dimension]: return a view of an input ndarray when sliced along a specified dimension. - [`sliceFrom( x, start, strict, writable )`][@stdlib/ndarray/base/slice-from]: return a shifted view of an input ndarray. - [`sliceTo( x, stop, strict, writable )`][@stdlib/ndarray/base/slice-to]: return a truncated view of an input ndarray. - [`slice( x, slice, strict, writable )`][@stdlib/ndarray/base/slice]: return a view of an input ndarray. - [`someBy( arrays, predicate[, thisArg ] )`][@stdlib/ndarray/base/some-by]: test whether at least `n` elements in an ndarray pass a test implemented by a predicate function. - [`spreadDimensions( ndims, x, dims )`][@stdlib/ndarray/base/spread-dimensions]: expand the shape of an array to a specified dimensionality by spreading its dimensions to specified dimension indices and inserting dimensions of size one for the remaining dimensions. - [`stride( x, dim )`][@stdlib/ndarray/base/stride]: return the stride along a specified dimension for a provided ndarray. - [`strides( x, copy )`][@stdlib/ndarray/base/strides]: return the strides of a provided ndarray. - [`strides2offset( shape, strides )`][@stdlib/ndarray/base/strides2offset]: determine the index offset which specifies the location of the first indexed value in a multidimensional array based on a stride array. - [`strides2order( strides )`][@stdlib/ndarray/base/strides2order]: determine the order of a multidimensional array based on a provided stride array. - [`sub2ind( shape, strides, offset, ...subscripts, mode )`][@stdlib/ndarray/base/sub2ind]: convert subscripts to a linear index. - [`ndarray2array( buffer, shape, strides, offset, order )`][@stdlib/ndarray/base/to-array]: convert an ndarray buffer to a generic array. - [`toNormalizedIndices( indices, max )`][@stdlib/ndarray/base/to-normalized-indices]: normalize a list of indices to the interval `[0,max]`. - [`toReversed( x )`][@stdlib/ndarray/base/to-reversed]: return a new ndarray where the order of elements of an input ndarray is reversed along each dimension. - [`toUniqueNormalizedIndices( indices, max )`][@stdlib/ndarray/base/to-unique-normalized-indices]: return a list of unique indices after normalizing to the interval `[0,max]`. - [`transpose( x )`][@stdlib/ndarray/base/transpose]: transpose a matrix (or a stack of matrices). - [`unaryAccumulate( arrays, initial, clbk )`][@stdlib/ndarray/base/unary-accumulate]: perform a reduction over elements in an input ndarray. - [`unaryBy( arrays, fcn, clbk[, thisArg] )`][@stdlib/ndarray/base/unary-by]: apply a unary function to each element in an input ndarray according to a callback function and assign results to elements in an output ndarray. - [`unaryInputCastingDataType( idtype, odtype, policy )`][@stdlib/ndarray/base/unary-input-casting-dtype]: resolve the input ndarray casting data type for a unary function. - [`unaryLoopOrder( shape, stridesX, stridesY )`][@stdlib/ndarray/base/unary-loop-interchange-order]: reorder ndarray dimensions and associated strides for loop interchange. - [`unaryOutputDataType( dtype, policy )`][@stdlib/ndarray/base/unary-output-dtype]: resolve the output ndarray data type for a unary function. - [`unaryReduceStrided1dAssignStruct( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct]: perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function which accepts an output `struct` object and assign results to a provided output ndarray. - [`unaryReduceStrided1dBy( fcn, arrays, dims[, options], clbk[, thisArg] )`][@stdlib/ndarray/base/unary-reduce-strided1d-by]: perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function accepting a callback and assign results to a provided output ndarray. - [`unaryReduceStrided1dDispatchByFactory( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by-factory]: create a function for performing a reduction on an input ndarray according to a callback function. - [`unaryReduceStrided1dDispatchBy( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by]: constructor for performing a reduction on an input ndarray according to a callback function. - [`unaryReduceStrided1dDispatchFactory( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-factory]: create a function for performing a reduction on an input ndarray. - [`unaryReduceStrided1dDispatch( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch]: constructor for performing a reduction on an input ndarray. - [`unaryReduceStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-strided1d]: perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function and assign results to a provided output ndarray. - [`unaryReduceSubarrayBy( fcn, arrays, dims[, options], clbk[, thisArg] )`][@stdlib/ndarray/base/unary-reduce-subarray-by]: perform a reduction over a list of specified dimensions in an input ndarray according to a callback function and assign results to a provided output ndarray. - [`unaryReduceSubarray( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-subarray]: perform a reduction over a list of specified dimensions in an input ndarray and assign results to a provided output ndarray. - [`unaryStrided1dDispatchFactory( table, idtypes, odtypes, policies[, options] )`][@stdlib/ndarray/base/unary-strided1d-dispatch-factory]: create a function for applying a strided function an input ndarray. - [`unaryStrided1dDispatch( table, idtypes, odtypes, policies[, options] )`][@stdlib/ndarray/base/unary-strided1d-dispatch]: constructor for applying a strided function to an input ndarray. - [`unaryStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-strided1d]: apply a one-dimensional strided array function to a list of specified dimensions in an input ndarray and assign results to a provided output ndarray. - [`unaryBlockSize( dtypeX, dtypeY )`][@stdlib/ndarray/base/unary-tiling-block-size]: resolve a loop block size for multi-dimensional array tiled loops. - [`unary( arrays, fcn )`][@stdlib/ndarray/base/unary]: apply a unary callback to elements in an input ndarray and assign results to elements in an output ndarray. - [`vind2bind( shape, strides, offset, order, idx, mode )`][@stdlib/ndarray/base/vind2bind]: convert a linear index in an array view to a linear index in an underlying data buffer. - [`wrapIndex( idx, max )`][@stdlib/ndarray/base/wrap-index]: wrap an index on the interval `[0,max]`. - [`zerosLike( x )`][@stdlib/ndarray/base/zeros-like]: create a zero-filled ndarray having the same shape and data type as a provided ndarray. - [`zeros( dtype, shape, order )`][@stdlib/ndarray/base/zeros]: create a zero-filled ndarray having a specified shape and data type.
The namespace contains the following sub-namespaces:
- [`assert`][@stdlib/ndarray/base/assert]: base ndarray assertion utilities.
## Examples ```javascript var objectKeys = require( '@stdlib/utils-keys' ); var ns = require( '@stdlib/ndarray-base' ); console.log( objectKeys( ns ) ); ```
* * * ## Notice This package is part of [stdlib][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][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Push event: 151
Last Year
  • Push event: 151

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 127
  • Total Committers: 1
  • Avg Commits per committer: 127.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 37
  • Committers: 1
  • Avg Commits per committer: 37.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
stdlib-bot n****y@s****o 127
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 19 last-month
  • Total dependent packages: 2
  • Total dependent repositories: 0
  • Total versions: 11
  • Total maintainers: 4
npmjs.org: @stdlib/ndarray-base

Base ndarray.

  • Homepage: https://stdlib.io
  • License: Apache-2.0
  • Latest release: 0.3.0
    published over 1 year ago
  • Versions: 11
  • Dependent Packages: 2
  • Dependent Repositories: 0
  • Downloads: 19 Last month
Rankings
Dependent packages count: 9.5%
Forks count: 17.4%
Stargazers count: 18.8%
Average: 19.8%
Dependent repos count: 25.3%
Downloads: 28.2%
Funding
  • type: opencollective
  • url: https://opencollective.com/stdlib
Last synced: 6 months ago

Dependencies

package.json npm
  • @stdlib/array-base-arraylike2object ^0.0.x development
  • @stdlib/array-buffer ^0.0.x development
  • @stdlib/array-complex128 ^0.0.x development
  • @stdlib/array-complex64 ^0.0.x development
  • @stdlib/array-dataview ^0.0.x development
  • @stdlib/array-filled ^0.0.x development
  • @stdlib/array-filled-by ^0.0.x development
  • @stdlib/array-float32 ^0.0.x development
  • @stdlib/array-float64 ^0.0.x development
  • @stdlib/array-int16 ^0.0.x development
  • @stdlib/array-int32 ^0.0.x development
  • @stdlib/array-int8 ^0.0.x development
  • @stdlib/array-typed-complex-ctors ^0.0.x development
  • @stdlib/array-uint16 ^0.0.x development
  • @stdlib/array-uint32 ^0.0.x development
  • @stdlib/array-uint8 ^0.0.x development
  • @stdlib/array-uint8c ^0.0.x development
  • @stdlib/assert-has-bigint-support ^0.0.x development
  • @stdlib/assert-has-own-property ^0.0.x development
  • @stdlib/assert-has-property ^0.0.x development
  • @stdlib/assert-instance-of ^0.0.x development
  • @stdlib/assert-is-array ^0.0.x development
  • @stdlib/assert-is-array-array ^0.0.x development
  • @stdlib/assert-is-array-like-object ^0.0.x development
  • @stdlib/assert-is-boolean ^0.0.x development
  • @stdlib/assert-is-browser ^0.0.x development
  • @stdlib/assert-is-buffer ^0.0.x development
  • @stdlib/assert-is-collection ^0.0.x development
  • @stdlib/assert-is-complex128array ^0.0.x development
  • @stdlib/assert-is-complex64array ^0.0.x development
  • @stdlib/assert-is-dataview ^0.0.x development
  • @stdlib/assert-is-float32array ^0.0.x development
  • @stdlib/assert-is-float64array ^0.0.x development
  • @stdlib/assert-is-function ^0.0.x development
  • @stdlib/assert-is-int16array ^0.0.x development
  • @stdlib/assert-is-int32array ^0.0.x development
  • @stdlib/assert-is-int8array ^0.0.x development
  • @stdlib/assert-is-integer ^0.0.x development
  • @stdlib/assert-is-little-endian ^0.0.x development
  • @stdlib/assert-is-ndarray-like ^0.0.x development
  • @stdlib/assert-is-nonnegative-integer ^0.0.x development
  • @stdlib/assert-is-nonnegative-integer-array ^0.0.x development
  • @stdlib/assert-is-number ^0.0.x development
  • @stdlib/assert-is-plain-object ^0.0.x development
  • @stdlib/assert-is-positive-integer ^0.0.x development
  • @stdlib/assert-is-string ^0.0.x development
  • @stdlib/assert-is-string-array ^0.0.x development
  • @stdlib/assert-is-uint16array ^0.0.x development
  • @stdlib/assert-is-uint32array ^0.0.x development
  • @stdlib/assert-is-uint8array ^0.0.x development
  • @stdlib/assert-is-uint8clampedarray ^0.0.x development
  • @stdlib/bench ^0.0.x development
  • @stdlib/bigint-ctor ^0.0.x development
  • @stdlib/boolean-ctor ^0.0.x development
  • @stdlib/buffer-alloc-unsafe ^0.0.x development
  • @stdlib/buffer-ctor ^0.0.x development
  • @stdlib/buffer-from-array ^0.0.x development
  • @stdlib/complex-float32 ^0.0.x development
  • @stdlib/complex-float64 ^0.0.x development
  • @stdlib/complex-imag ^0.0.x development
  • @stdlib/complex-imagf ^0.0.x development
  • @stdlib/complex-real ^0.0.x development
  • @stdlib/complex-realf ^0.0.x development
  • @stdlib/math-base-assert-is-nan ^0.0.x development
  • @stdlib/math-base-special-abs ^0.0.x development
  • @stdlib/math-base-special-cbrt ^0.0.x development
  • @stdlib/math-base-special-floor ^0.0.x development
  • @stdlib/math-base-special-identity ^0.0.x development
  • @stdlib/math-base-special-pow ^0.0.x development
  • @stdlib/math-base-special-round ^0.0.x development
  • @stdlib/math-base-special-sqrt ^0.0.x development
  • @stdlib/math-base-special-trunc ^0.0.x development
  • @stdlib/ndarray-array ^0.0.x development
  • @stdlib/ndarray-base-assert-is-allowed-data-type-cast ^0.0.x development
  • @stdlib/ndarray-base-assert-is-buffer-length-compatible ^0.0.x development
  • @stdlib/ndarray-base-assert-is-buffer-length-compatible-shape ^0.0.x development
  • @stdlib/ndarray-base-assert-is-casting-mode ^0.0.x development
  • @stdlib/ndarray-base-assert-is-column-major ^0.0.x development
  • @stdlib/ndarray-base-assert-is-column-major-contiguous ^0.0.x development
  • @stdlib/ndarray-base-assert-is-contiguous ^0.0.x development
  • @stdlib/ndarray-base-assert-is-data-type ^0.0.x development
  • @stdlib/ndarray-base-assert-is-index-mode ^0.0.x development
  • @stdlib/ndarray-base-assert-is-order ^0.0.x development
  • @stdlib/ndarray-base-assert-is-read-only ^0.0.x development
  • @stdlib/ndarray-base-assert-is-row-major ^0.0.x development
  • @stdlib/ndarray-base-assert-is-row-major-contiguous ^0.0.x development
  • @stdlib/ndarray-base-assert-is-safe-data-type-cast ^0.0.x development
  • @stdlib/ndarray-base-assert-is-same-kind-data-type-cast ^0.0.x development
  • @stdlib/ndarray-base-assert-is-single-segment-compatible ^0.0.x development
  • @stdlib/ndarray-casting-modes ^0.0.x development
  • @stdlib/ndarray-ctor ^0.0.x development
  • @stdlib/ndarray-dtypes ^0.0.x development
  • @stdlib/ndarray-ind2sub ^0.0.x development
  • @stdlib/ndarray-index-modes ^0.0.x development
  • @stdlib/ndarray-orders ^0.0.x development
  • @stdlib/ndarray-safe-casts ^0.0.x development
  • @stdlib/ndarray-same-kind-casts ^0.0.x development
  • @stdlib/number-float64-base-from-int64-bytes ^0.0.x development
  • @stdlib/number-float64-base-to-int64-bytes ^0.0.x development
  • @stdlib/random-base-discrete-uniform ^0.0.x development
  • @stdlib/random-base-randu ^0.0.x development
  • @stdlib/strided-base-reinterpret-complex128 ^0.0.x development
  • @stdlib/strided-base-reinterpret-complex64 ^0.0.x development
  • @stdlib/strided-dtypes ^0.0.x development
  • @stdlib/string-format ^0.0.x development
  • @stdlib/string-left-pad ^0.0.x development
  • @stdlib/string-replace ^0.0.x development
  • @stdlib/string-right-pad ^0.0.x development
  • @stdlib/utils-constructor-name ^0.0.x development
  • @stdlib/utils-define-nonenumerable-read-only-accessor ^0.0.x development
  • @stdlib/utils-define-nonenumerable-read-only-property ^0.0.x development
  • @stdlib/utils-keys ^0.0.x development
  • @stdlib/utils-object-inverse ^0.0.x development
  • @stdlib/utils-try-require ^0.0.x development
  • istanbul ^0.4.1 development
  • proxyquire ^2.0.0 development
  • tap-spec 5.x.x development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/ndarray-base-assert ^0.0.x
  • @stdlib/ndarray-base-bind2vind ^0.0.x
  • @stdlib/ndarray-base-broadcast-array ^0.0.x
  • @stdlib/ndarray-base-broadcast-shapes ^0.0.x
  • @stdlib/ndarray-base-buffer ^0.0.x
  • @stdlib/ndarray-base-buffer-ctors ^0.0.x
  • @stdlib/ndarray-base-buffer-dtype ^0.0.x
  • @stdlib/ndarray-base-buffer-dtype-enum ^0.0.x
  • @stdlib/ndarray-base-bytes-per-element ^0.0.x
  • @stdlib/ndarray-base-char2dtype ^0.0.x
  • @stdlib/ndarray-base-clamp-index ^0.0.x
  • @stdlib/ndarray-base-ctor ^0.0.x
  • @stdlib/ndarray-base-dtype-char ^0.0.x
  • @stdlib/ndarray-base-dtype-desc ^0.0.x
  • @stdlib/ndarray-base-dtype-enum2str ^0.0.x
  • @stdlib/ndarray-base-dtype-resolve-enum ^0.0.x
  • @stdlib/ndarray-base-dtype-resolve-str ^0.0.x
  • @stdlib/ndarray-base-dtype-str2enum ^0.0.x
  • @stdlib/ndarray-base-dtype2c ^0.0.x
  • @stdlib/ndarray-base-dtypes2signatures ^0.0.x
  • @stdlib/ndarray-base-expand-dimensions ^0.0.x
  • @stdlib/ndarray-base-from-scalar ^0.0.x
  • @stdlib/ndarray-base-ind ^0.0.x
  • @stdlib/ndarray-base-ind2sub ^0.0.x
  • @stdlib/ndarray-base-iteration-order ^0.0.x
  • @stdlib/ndarray-base-max-view-buffer-index ^0.0.x
  • @stdlib/ndarray-base-maybe-broadcast-array ^0.0.x
  • @stdlib/ndarray-base-meta-data-props ^0.0.x
  • @stdlib/ndarray-base-min-view-buffer-index ^0.0.x
  • @stdlib/ndarray-base-minmax-view-buffer-index ^0.0.x
  • @stdlib/ndarray-base-ndarraylike2object ^0.0.x
  • @stdlib/ndarray-base-nonsingleton-dimensions ^0.0.x
  • @stdlib/ndarray-base-numel ^0.0.x
  • @stdlib/ndarray-base-prepend-singleton-dimensions ^0.0.x
  • @stdlib/ndarray-base-remove-singleton-dimensions ^0.0.x
  • @stdlib/ndarray-base-serialize-meta-data ^0.0.x
  • @stdlib/ndarray-base-shape2strides ^0.0.x
  • @stdlib/ndarray-base-singleton-dimensions ^0.0.x
  • @stdlib/ndarray-base-strides2offset ^0.0.x
  • @stdlib/ndarray-base-strides2order ^0.0.x
  • @stdlib/ndarray-base-sub2ind ^0.0.x
  • @stdlib/ndarray-base-to-array ^0.0.x
  • @stdlib/ndarray-base-transpose ^0.0.x
  • @stdlib/ndarray-base-vind2bind ^0.0.x
  • @stdlib/ndarray-base-wrap-index ^0.0.x
  • @stdlib/ndarray-base-zeros ^0.0.x
  • @stdlib/ndarray-base-zeros-like ^0.0.x
  • @stdlib/utils-define-read-only-property ^0.0.x
.github/workflows/benchmark.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request v3 composite
.github/workflows/examples.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/productionize.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • stdlib-js/bundle-action main composite
  • stdlib-js/transform-errors-action main composite
.github/workflows/publish.yml actions
  • JS-DevTools/npm-publish v1 composite
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/test.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/test_bundles.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • denoland/setup-deno v1 composite
.github/workflows/test_coverage.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/test_install.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite