Apply a plane rotation.
npm install @stdlib/blas-base-wasm-csrotWe 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!
About stdlib...
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
> Apply a plane rotation.
``bash`
npm install @stdlib/blas-base-wasm-csrot
`javascript`
var csrot = require( '@stdlib/blas-base-wasm-csrot' );
#### csrot.main( N, cx, strideX, cy, strideY, c, s )
Applies a plane rotation.
`javascript
var Complex64Array = require( '@stdlib/array-complex64' );
var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
csrot.main( cx.length, cx, 1, cy, 1, 0.8, 0.6 );
// cx =>
// cy =>
`
The function has the following parameters:
- N: number of indexed elements.
- cx: first input [Complex64Array][@stdlib/array/complex64].cx
- strideX: index increment for .Complex64Array
- cy: second input [][@stdlib/array/complex64].cy
- strideY: index increment for .
- c: cosine of the angle of rotation.
- s: sine of the angle of rotation.
The N and stride parameters determine how values in the strided arrays are accessed at runtime. For example, to apply a plane rotation to every other element,
`javascript
var Complex64Array = require( '@stdlib/array-complex64' );
var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
csrot.main( 2, cx, 2, cy, 2, 0.8, 0.6 );
// cx =>
// cy =>
`
Note that indexing is relative to the first index. To introduce an offset, use [typed array][mdn-typed-array] views.
`javascript
var Complex64Array = require( '@stdlib/array-complex64' );
// Initial arrays...
var cx0 = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
var cy0 = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
// Create offset views...
var cx1 = new Complex64Array( cx0.buffer, cx0.BYTES_PER_ELEMENT*1 ); // start at 2nd element
var cy1 = new Complex64Array( cy0.buffer, cy0.BYTES_PER_ELEMENT*2 ); // start at 3rd element
csrot.main( 2, cx1, -2, cy1, 1, 0.8, 0.6 );
// cx0 =>
// cy0 =>
`
#### csrot.ndarray( N, cx, strideX, offsetX, cy, strideY, offsetY, c, s )
Applies a plane rotation using alternative indexing semantics.
`javascript
var Complex64Array = require( '@stdlib/array-complex64' );
var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
csrot.ndarray( cx.length, cx, 1, 0, cy, 1, 0, 0.8, 0.6 );
// cx =>
// cy =>
`
The function has the following additional parameters:
- offsetX: starting index for cx.cy
- offsetY: starting index for .
While [typed array][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to apply a plane rotation to every other element starting from the second element,
`javascript
var Complex64Array = require( '@stdlib/array-complex64' );
var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
var cy = new Complex64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
csrot.ndarray( 2, cx, 2, 1, cy, 2, 1, 0.8, 0.6 );
// cx =>
// cy =>
`
*
#### csrot.Module( memory )
Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.
`javascript
var Memory = require( '@stdlib/wasm-memory' );
// Create a new memory instance with an initial size of 10 pages (640KiB) and a maximum size of 100 pages (6.4MiB):
var mem = new Memory({
'initial': 10,
'maximum': 100
});
// Create a BLAS routine:
var mod = new csrot.Module( mem );
// returns
// Initialize the routine:
mod.initializeSync();
`
#### csrot.Module.prototype.main( N, cxp, sx, cyp, sy, c, s )
Applies a plane rotation.
`javascript
var Memory = require( '@stdlib/wasm-memory' );
var oneTo = require( '@stdlib/array-one-to' );
var ones = require( '@stdlib/array-ones' );
var zeros = require( '@stdlib/array-zeros' );
var bytesPerElement = require( '@stdlib/ndarray-base-bytes-per-element' );
var Complex64Array = require( '@stdlib/array-complex64' );
var reinterpretComplex64 = require( '@stdlib/strided-base-reinterpret-complex64' );
var csrot = require( '@stdlib/blas-base-wasm-csrot' );
// Create a new memory instance with an initial size of 10 pages (320KiB) and a maximum size of 100 pages (6.4MiB):
var mem = new Memory({
'initial': 10,
'maximum': 100
});
// Create a BLAS routine:
var mod = new csrot.Module( mem );
// returns
// Initialize the routine:
mod.initializeSync();
// Define a vector data type:
var dtype = 'complex64';
// Specify a vector length:
var N = 5;
// Define pointers (i.e., byte offsets) for storing the input vectors:
var cxptr = 0;
var cyptr = N * bytesPerElement( dtype );
// Write vector values to module memory:
var xbuf = oneTo( N*2, 'float32' );
var cx = new Complex64Array( xbuf.buffer );
mod.write( cxptr, cx );
var ybuf = ones( N*2, 'float32' );
var cy = new Complex64Array( ybuf.buffer );
mod.write( cyptr, cy );
// Perform computation:
mod.main( N, cxptr, 1, cyptr, 1, 0.8, 0.6 );
// Read out the results:
var viewX = zeros( N, dtype );
var viewY = zeros( N, dtype );
mod.read( cxptr, viewX );
mod.read( cyptr, viewY );
console.log( reinterpretComplex64( viewX, 0 ) );
// =>
console.log( reinterpretComplex64( viewY, 0 ) );
// =>
`
The function has the following parameters:
- N: number of indexed elements.
- cxp: first input [Complex64Array][@stdlib/array/complex64] pointer (i.e., byte offset).cx
- sx: index increment for .Complex64Array
- cyp: second input [][@stdlib/array/complex64] pointer (i.e., byte offset).cy
- sy: index increment for .
- c: cosine of the angle of rotation.
- s: sine of the angle of rotation.
#### csrot.Module.prototype.ndarray( N, cxp, sx, ox, cyp, sy, oy, c, s )
Applies a plane rotation using alternative indexing semantics.
`javascript
var Memory = require( '@stdlib/wasm-memory' );
var oneTo = require( '@stdlib/array-one-to' );
var ones = require( '@stdlib/array-ones' );
var zeros = require( '@stdlib/array-zeros' );
var bytesPerElement = require( '@stdlib/ndarray-base-bytes-per-element' );
var Complex64Array = require( '@stdlib/array-complex64' );
var reinterpretComplex64 = require( '@stdlib/strided-base-reinterpret-complex64' );
var csrot = require( '@stdlib/blas-base-wasm-csrot' );
// Create a new memory instance with an initial size of 10 pages (320KiB) and a maximum size of 100 pages (6.4MiB):
var mem = new Memory({
'initial': 10,
'maximum': 100
});
// Create a BLAS routine:
var mod = new csrot.Module( mem );
// returns
// Initialize the routine:
mod.initializeSync();
// Define a vector data type:
var dtype = 'complex64';
// Specify a vector length:
var N = 5;
// Define pointers (i.e., byte offsets) for storing input vectors:
var cxptr = 0;
var cyptr = N * bytesPerElement( dtype );
// Write vector values to module memory:
var xbuf = oneTo( N*2, 'float32' );
var cx = new Complex64Array( xbuf.buffer );
mod.write( cxptr, cx );
var ybuf = ones( N*2, 'float32' );
var cy = new Complex64Array( ybuf.buffer );
mod.write( cyptr, cy );
// Perform computation:
mod.ndarray( N, cxptr, 1, 0, cyptr, 1, 0, 0.8, 0.6 );
// Read out the results:
var viewX = zeros( N, dtype );
var viewY = zeros( N, dtype );
mod.read( cxptr, viewX );
mod.read( cyptr, viewY );
console.log( reinterpretComplex64( viewX, 0 ) );
// =>
console.log( reinterpretComplex64( viewY, 0 ) );
// =>
`
The function has the following additional parameters:
- ox: starting index for cx.cy
- oy: starting index for .
*
- If N <= 0, cx and cy are left unchanged.csrot
- This package implements routines using WebAssembly. When provided arrays which are not allocated on a module memory instance, data must be explicitly copied to module memory prior to computation. Data movement may entail a performance cost, and, thus, if you are using arrays external to module memory, you should prefer using [@stdlib/blas-base/csrot][@stdlib/blas/base/csrot]. However, if working with arrays which are allocated and explicitly managed on module memory, you can achieve better performance when compared to the pure JavaScript implementations found in [@stdlib/blas/base/csrot][@stdlib/blas/base/csrot]. Beware that such performance gains may come at the cost of additional complexity when having to perform manual memory management. Choosing between implementations depends heavily on the particular needs and constraints of your application, with no one choice universally better than the other.csrot()
- corresponds to the [BLAS][blas] level 1 function [csrot][csrot].
*
`javascript
var oneTo = require( '@stdlib/array-one-to' );
var ones = require( '@stdlib/array-ones' );
var zeros = require( '@stdlib/array-zeros' );
var Complex64Array = require( '@stdlib/array-complex64' );
var reinterpretComplex64 = require( '@stdlib/strided-base-reinterpret-complex64' );
var csrot = require( '@stdlib/blas-base-wasm-csrot' );
// Specify a vector length:
var N = 5;
var xbuf = oneTo( N*2, 'float32' );
var cx = new Complex64Array( xbuf.buffer );
var ybuf = ones( N*2, 'float32' );
var cy = new Complex64Array( ybuf.buffer );
// Perform computation:
csrot.ndarray( N, cx, 1, 0, cy, 1, 0, 0.8, 0.6 );
// Print the results:
console.log( reinterpretComplex64( cx, 0 ) );
// =>
console.log( reinterpretComplex64( cy, 0 ) );
// =>
`
*
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]
---
See [LICENSE][stdlib-license].
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/blas-base-wasm-csrot.svg
[npm-url]: https://npmjs.org/package/@stdlib/blas-base-wasm-csrot
[test-image]: https://github.com/stdlib-js/blas-base-wasm-csrot/actions/workflows/test.yml/badge.svg?branch=v0.1.1
[test-url]: https://github.com/stdlib-js/blas-base-wasm-csrot/actions/workflows/test.yml?query=branch:v0.1.1
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/blas-base-wasm-csrot/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/blas-base-wasm-csrot?branch=main
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
[chat-url]: https://stdlib.zulipchat.com
[stdlib]: https://github.com/stdlib-js/stdlib
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
[umd]: https://github.com/umdjs/umd
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
[deno-url]: https://github.com/stdlib-js/blas-base-wasm-csrot/tree/deno
[deno-readme]: https://github.com/stdlib-js/blas-base-wasm-csrot/blob/deno/README.md
[umd-url]: https://github.com/stdlib-js/blas-base-wasm-csrot/tree/umd
[umd-readme]: https://github.com/stdlib-js/blas-base-wasm-csrot/blob/umd/README.md
[esm-url]: https://github.com/stdlib-js/blas-base-wasm-csrot/tree/esm
[esm-readme]: https://github.com/stdlib-js/blas-base-wasm-csrot/blob/esm/README.md
[branches-url]: https://github.com/stdlib-js/blas-base-wasm-csrot/blob/main/branches.md
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/blas-base-wasm-csrot/main/LICENSE
[blas]: http://www.netlib.org/blas
[csrot]: http://www.netlib.org/lapack/explore-html/da/df6/group__complex__blas__level1.html
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
[@stdlib/array/complex64]: https://www.npmjs.com/package/@stdlib/array-complex64
[@stdlib/wasm/memory]: https://www.npmjs.com/package/@stdlib/wasm-memory
[@stdlib/wasm/module-wrapper]: https://www.npmjs.com/package/@stdlib/wasm-module-wrapper
[@stdlib/blas/base/csrot]: https://www.npmjs.com/package/@stdlib/blas-base-csrot