
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
@stdlib/array-typed-complex
Advanced tools
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!
Create a complex number typed array.
npm install @stdlib/array-typed-complex
var complexarray = require( '@stdlib/array-typed-complex' );
Creates a complex number typed array having a specified data type dtype
.
var arr = complexarray();
// returns <Complex128Array>
The function recognizes the following data types:
complex128
: double-precision complex floating-point numberscomplex64
: single-precision complex floating-point numbersBy default, the output complex number typed array data type is complex128
. To specify an alternative data type, provide a dtype
argument.
var arr = complexarray( 'complex64' );
// returns <Complex64Array>
Returns a complex number typed array having a specified length
.
var arr1 = complexarray( 5 );
// returns <Complex128Array>
var arr2 = complexarray( 5, 'complex64' );
// returns <Complex64Array>
Creates a complex number typed array from another complex number typed array.
var arr1 = complexarray( [ 5.0, -3.0, 2.0, 1.0 ] );
// returns <Complex128Array>
var arr2 = complexarray( arr1 );
// returns <Complex128Array>
var arr3 = complexarray( arr1, 'complex64' );
// returns <Complex64Array>
Creates a complex number typed array from an array-like object or iterable.
var arr1 = complexarray( [ 0.5, 0.5, 0.5, 0.5 ] );
// returns <Complex128Array>
var arr2 = complexarray( [ 0.5, 0.5, 0.5, 0.5 ], 'complex64' );
// returns <Complex64Array>
If a provided array-like object contains interleaved real and imaginary components, the array-like object must have a length which is a multiple of two.
Returns a complex number typed array view of an ArrayBuffer
.
var ArrayBuffer = require( '@stdlib/array-buffer' );
var buf = new ArrayBuffer( 64 );
var arr1 = complexarray( buf );
// returns <Complex128Array>
var arr2 = complexarray( buf, 'complex64' );
// returns <Complex64Array>
var arr3 = complexarray( buf, 32 );
// returns <Complex128Array>
var arr4 = complexarray( buf, 32, 'complex64' );
// returns <Complex64Array>
var arr5 = complexarray( buf, 32, 1 );
// returns <Complex128Array>
var arr6 = complexarray( buf, 24, 4, 'complex64' );
// returns <Complex64Array>
var discreteUniform = require( '@stdlib/random-base-discrete-uniform' );
var gfillBy = require( '@stdlib/blas-ext-base-gfill-by' );
var Complex128 = require( '@stdlib/complex-float64-ctor' );
var reinterpret128 = require( '@stdlib/strided-base-reinterpret-complex128' );
var complexarray = require( '@stdlib/array-typed-complex' );
function rand() {
var re = discreteUniform( -10, 10 );
var im = discreteUniform( -10, 10 );
return new Complex128( re, im );
}
// Create a new complex number typed array:
var arr = complexarray( 100, 'complex128' );
// Fill the array with random complex numbers:
gfillBy( arr.length, arr, 1, rand );
// Reinterpret the complex number array as a `Float64Array`:
var view = reinterpret128( arr, 0 );
// View the results:
console.log( view );
@stdlib/array-typed
: create a typed array.@stdlib/array-typed-real
: create a typed array.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.
See LICENSE.
Copyright © 2016-2024. The Stdlib Authors.
0.2.2 (2024-07-29)
<section class="commits">75d4f83
- refactor: update require and include paths (by Athan Reines)A total of 1 person contributed to this release. Thank you to this contributor:
FAQs
Create a complex number typed array.
The npm package @stdlib/array-typed-complex receives a total of 5 weekly downloads. As such, @stdlib/array-typed-complex popularity was classified as not popular.
We found that @stdlib/array-typed-complex demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.