-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
feat: add ndarray/broadcast-scalar
#9916
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
headlessNode
wants to merge
1
commit into
stdlib-js:develop
Choose a base branch
from
headlessNode:nd-bd-scalar
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,814
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
169 changes: 169 additions & 0 deletions
169
lib/node_modules/@stdlib/ndarray/broadcast-scalar/README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,169 @@ | ||
| <!-- | ||
|
|
||
| @license Apache-2.0 | ||
|
|
||
| Copyright (c) 2026 The Stdlib Authors. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
|
|
||
| --> | ||
|
|
||
| # broadcastScalar | ||
|
|
||
| > Broadcast a scalar value to an [ndarray][@stdlib/ndarray/ctor] of a specified shape. | ||
|
|
||
| <!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="intro"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.intro --> | ||
|
|
||
| <!-- Package usage documentation. --> | ||
|
|
||
| <section class="usage"> | ||
|
|
||
| ## Usage | ||
|
|
||
| ```javascript | ||
| var broadcastScalar = require( '@stdlib/ndarray/broadcast-scalar' ); | ||
| ``` | ||
|
|
||
| #### broadcastScalar( shape, value\[, options] ) | ||
|
|
||
| Broadcast a scalar value to an [`ndarray`][@stdlib/ndarray/ctor] of a specified shape. | ||
|
|
||
| ```javascript | ||
| var getDType = require( '@stdlib/ndarray/dtype' ); | ||
|
|
||
| var x = broadcastScalar( [ 2, 2 ], 1.0 ); | ||
| // returns <ndarray>[ [ 1.0, 1.0 ], [ 1.0, 1.0 ] ] | ||
|
|
||
| var dt = getDType( x ); | ||
| // returns 'float64' | ||
| ``` | ||
|
|
||
| The function accepts the following arguments: | ||
|
|
||
| - **shape**: shape of the ouput [`ndarray`][@stdlib/ndarray/ctor]. | ||
| - **value**: scalar value. | ||
|
|
||
| The function accepts the following `options`: | ||
|
|
||
| - **dtype**: output array [data type][@stdlib/ndarray/dtypes]. | ||
| - **order**: array order (i.e., memory layout), which is either `row-major` (C-style) or `column-major` (Fortran-style). Default: `'row-major'`. | ||
| - **readonly**: `boolean` indicating whether an array should be **read-only**. Default: `false`. | ||
|
|
||
| If a `dtype` option is not provided and `value` | ||
|
|
||
| - is a number, the default [data type][@stdlib/ndarray/dtypes] is the [default][@stdlib/ndarray/defaults] real-valued floating-point data type. | ||
| - is a boolean, the default [data type][@stdlib/ndarray/dtypes] is the [default][@stdlib/ndarray/defaults] boolean data type. | ||
| - is a complex number object of a known data type, the data type is the same as the provided value. | ||
| - is a complex number object of an unknown data type, the default [data type][@stdlib/ndarray/dtypes] is the [default][@stdlib/ndarray/defaults] complex-valued floating-point data type. | ||
| - is any other value type, the default [data type][@stdlib/ndarray/dtypes] is `'generic'`. | ||
|
|
||
| To explicitly specify the [data type][@stdlib/ndarray/dtypes] of the returned [`ndarray`][@stdlib/ndarray/ctor], provide a `dtype` option. | ||
|
|
||
| ```javascript | ||
| var getDType = require( '@stdlib/ndarray/dtype' ); | ||
|
|
||
| var x = broadcastScalar( [ 2, 2 ], 1.0, { | ||
| 'dtype': 'float32' | ||
| }); | ||
| // returns <ndarray>[ [ 1.0, 1.0 ], [ 1.0, 1.0 ] ] | ||
|
|
||
| var dt = getDType( x ); | ||
| // returns 'float32' | ||
| ``` | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.usage --> | ||
|
|
||
| <!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="notes"> | ||
|
|
||
| ## Notes | ||
|
|
||
| - If `value` is a number and [`dtype`][@stdlib/ndarray/dtypes] is a complex [data type][@stdlib/ndarray/dtypes], the function returns an [ndarray][@stdlib/ndarray/ctor] containing a complex number whose real component equals the provided scalar `value` and whose imaginary component is zero. | ||
| - The function does not guard against precision loss when `value` is a number and the `dtype` argument is an integer [data type][@stdlib/ndarray/dtypes]. | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.notes --> | ||
|
|
||
| <!-- Package usage examples. --> | ||
|
|
||
| <section class="examples"> | ||
|
|
||
| ## Examples | ||
|
|
||
| <!-- eslint no-undef: "error" --> | ||
|
|
||
| ```javascript | ||
| var dtypes = require( '@stdlib/ndarray/dtypes' ); | ||
| var broadcastScalar = require( '@stdlib/ndarray/broadcast-scalar' ); | ||
|
|
||
| // Get a list of data types: | ||
| var dt = dtypes( 'integer_and_generic' ); | ||
|
|
||
| // Generate zero-dimensional arrays... | ||
| var x; | ||
| var i; | ||
| for ( i = 0; i < dt.length; i++ ) { | ||
| x = broadcastScalar( [ 2, 2 ], i, { | ||
| 'dtype': dt[ i ] | ||
| }); | ||
| console.log( x.get( 0, 1 ) ); | ||
| } | ||
| ``` | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.examples --> | ||
|
|
||
| <!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="references"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.references --> | ||
|
|
||
| <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
|
|
||
| <section class="related"> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.related --> | ||
|
|
||
| <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
|
||
| <section class="links"> | ||
|
|
||
| [@stdlib/ndarray/ctor]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/ctor | ||
|
|
||
| [@stdlib/ndarray/dtypes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/dtypes | ||
|
|
||
| [@stdlib/ndarray/defaults]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/defaults | ||
|
|
||
| <!-- <related-links> --> | ||
|
|
||
| <!-- </related-links> --> | ||
|
|
||
| </section> | ||
|
|
||
| <!-- /.links --> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@headlessNode This needs to be refactored so that we are consistent with, e.g.,
broadcastArray. Namely,This also matches the order of the "base" package
It is not clear why you chose to deviate here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see this is because that is the signature I used in the upstream issue. I was wrong.
valueshould come beforeshapebased on looking at similar packages.