@stdlib/array
Version:
Arrays.
163 lines (98 loc) • 4.89 kB
Markdown
<!--
@license Apache-2.0
Copyright (c) 2023 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.
-->
# nansLike
> Create an array filled with NaNs and having the same length and data type as a provided array.
<!-- 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 nansLike = require( '@stdlib/array/nans-like' );
```
#### nansLike( x\[, dtype] )
Creates an array filled with NaNs and having the same length and data type as a provided array `x`.
```javascript
var x = [ 1, 2, 3, 4, 5 ];
var arr = nansLike( x );
// returns [ NaN, NaN, NaN, NaN, NaN ]
```
The function supports the following data types:
- `float64`: double-precision floating-point numbers (IEEE 754)
- `float32`: single-precision floating-point numbers (IEEE 754)
- `complex128`: double-precision complex floating-point numbers
- `complex64`: single-precision complex floating-point numbers
- `generic`: generic JavaScript values
By default, the output array data type is inferred from the provided array `x`. To return an array having a different data type, provide a `dtype` argument.
```javascript
var x = [ 0, 0 ];
var arr = nansLike( x, 'float32' );
// returns <Float32Array>[ NaN, NaN ]
```
</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 the output array has a complex number data type, each element of the returned array has a real component equal to `NaN` and an imaginary component equal to `NaN`.
</section>
<!-- /.notes -->
<!-- Package usage examples. -->
<section class="examples">
## Examples
<!-- eslint no-undef: "error" -->
```javascript
var dtypes = require( '@stdlib/array/typed-float-dtypes' );
var zeros = require( '@stdlib/array/zeros' );
var nansLike = require( '@stdlib/array/nans-like' );
// Create a zero-filled array:
var x = zeros( 4, 'complex128' );
// Get a list of array data types:
var dt = dtypes();
// Generate filled arrays...
var y;
var i;
for ( i = 0; i < dt.length; i++ ) {
y = nansLike( x, dt[ i ] );
console.log( y );
}
```
</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">
* * *
## See Also
- <span class="package-name">[`@stdlib/array/full-like`][@stdlib/array/full-like]</span><span class="delimiter">: </span><span class="description">create a filled array having the same length and data type as a provided array.</span>
- <span class="package-name">[`@stdlib/array/nans`][@stdlib/array/nans]</span><span class="delimiter">: </span><span class="description">create an array filled with NaNs and having a specified length.</span>
- <span class="package-name">[`@stdlib/array/ones-like`][@stdlib/array/ones-like]</span><span class="delimiter">: </span><span class="description">create an array filled with ones and having the same length and data type as a provided array.</span>
- <span class="package-name">[`@stdlib/array/zeros-like`][@stdlib/array/zeros-like]</span><span class="delimiter">: </span><span class="description">create a zero-filled array having the same length and data type as a provided array.</span>
</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">
<!-- <related-links> -->
[@stdlib/array/full-like]: https://github.com/stdlib-js/array/tree/main/full-like
[@stdlib/array/nans]: https://github.com/stdlib-js/array/tree/main/nans
[@stdlib/array/ones-like]: https://github.com/stdlib-js/array/tree/main/ones-like
[@stdlib/array/zeros-like]: https://github.com/stdlib-js/array/tree/main/zeros-like
<!-- </related-links> -->
</section>
<!-- /.links -->