Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork0
Broadcast an ndarray to a specified shape.
License
stdlib-js/ndarray-broadcast-array
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
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 onGitHub, and please considerfinancially supporting stdlib. We greatly appreciate your continued support!
Broadcast anndarray to a specified shape.
npm install @stdlib/ndarray-broadcast-array
Alternatively,
- To load the package in a website via a
scripttag without installation and bundlers, use theES Module available on theesmbranch (seeREADME). - If you are using Deno, visit the
denobranch (seeREADME for usage intructions). - For use in Observable, or in browser/node environments, use theUniversal Module Definition (UMD) build available on the
umdbranch (seeREADME).
Thebranches.md 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.
varbroadcastArray=require('@stdlib/ndarray-broadcast-array');
Broadcasts anndarray to a specifiedshape.
vararray=require('@stdlib/ndarray-array');// Create a 2x2 ndarray:varx=array([[1,2],[3,4]]);// returns <ndarray>// Broadcast to a 2x2x2 ndarray:vary=broadcastArray(x,[2,2,2]);// returns <ndarray>
- The function throws an error if a providedndarray isincompatible with a provided shape.
- The returnedndarray is aread-only view on the inputndarray data buffer. The view is typicallynot contiguous. As more than one element of a returned view may refer to the same memory location, writing to the inputndarray may affect multiple elements. If you need to write to the inputndarray, copy the inputndarraybefore broadcasting.
- The function always returns a newndarray instance even if the inputndarray shape and the desired shape are the same.
vararray=require('@stdlib/ndarray-array');varnumel=require('@stdlib/ndarray-base-numel');varind2sub=require('@stdlib/ndarray-ind2sub');varbroadcastArray=require('@stdlib/ndarray-broadcast-array');// Create a 2x2 array:varx=array([[1,2],[3,4]]);// returns <ndarray>// Broadcast the array to 3x2x2:vary=broadcastArray(x,[3,2,2]);// returns <ndarray>// Retrieve the shape:varsh=y.shape;// returns [ 3, 2, 2 ]// Retrieve the number of elements:varN=numel(sh);// Loop through the array elements...vari;for(i=0;i<N;i++){console.log('Y[%s] = %d',ind2sub(sh,i).join(', '),y.iget(i));}
@stdlib/ndarray-array:multidimensional arrays.@stdlib/ndarray-broadcast-arrays:broadcast ndarrays to a common shape.@stdlib/ndarray-ctor:multidimensional array constructor.@stdlib/ndarray-maybe-broadcast-array:broadcast an ndarray to a specified shape if and only if the specified shape differs from the provided ndarray's shape.
This package is part ofstdlib, 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 developstdlib, see the main projectrepository.
SeeLICENSE.
Copyright © 2016-2024. The StdlibAuthors.
About
Broadcast an ndarray to a specified shape.
Topics
Resources
License
Code of conduct
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.