Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/clacgv/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex64' );
// MAIN //

/**
* Conjugates each element in a single-precision complex floating-point vector.
* Conjugates each element in a single-precision complex floating-point vector using alternative indexing semantics.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {Complex64Array} cx - input array
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/claset/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Sets the off-diagonal elements and the diagonal elements of a single-precision complex floating-point matrix to specified values.
* Sets the off-diagonal elements and the diagonal elements of a single-precision complex floating-point matrix to specified values using alternative indexing semantics.
*
* @param {string} uplo - specifies whether to set the upper or lower triangular/trapezoidal part of matrix `A`
* @param {NonNegativeInteger} M - number of rows in matrix `A`
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/claswp/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV`.
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV` and alternative indexing semantics.
*
* @param {PositiveInteger} N - number of columns in `A`
* @param {Complex64Array} A - input matrix
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/crot/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var imagf = require( '@stdlib/complex/float32/imag' );
// MAIN //

/**
* Applies a plane rotation with real cosine and complex sine.
* Applies a plane rotation with real cosine and complex sine using alternative indexing semantics.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {Complex64Array} cx - first input array
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/dladiv/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Divides two double-precision complex floating-point numbers in real arithmetic.
* Divides two double-precision complex floating-point numbers in real arithmetic using alternative indexing semantics.
*
* @param {number} a - real component of numerator
* @param {number} b - imaginary component of numerator
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/dlarf/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Applies a real elementary reflector `H = I - tau * v * v^T` to a real M by N matrix `C`.
* Applies a real elementary reflector `H = I - tau * v * v^T` to a real M by N matrix `C` using alternative indexing semantics.
*
* ## Notes
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Applies a real elementary reflector `H = I - tau * v * v^T` to a real M by N matrix `C`.
* Applies a real elementary reflector `H = I - tau * v * v^T` to a real M by N matrix `C` using alternative indexing semantics.
*
* ## Notes
*
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/dlaswp/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV`.
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV` and alternative indexing semantics.
*
* @param {PositiveInteger} N - number of columns in `A`
* @param {Float64Array} A - input matrix
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/slaswp/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV`.
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV` and alternative indexing semantics.
*
* @param {PositiveInteger} N - number of columns in `A`
* @param {Float32Array} A - input matrix
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/zlacgv/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex128' );
// MAIN //

/**
* Conjugates each element in a double-precision complex floating-point vector.
* Conjugates each element in a double-precision complex floating-point vector using alternative indexing semantics.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {Complex128Array} zx - input array
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/zlaset/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Sets the off-diagonal elements and the diagonal elements of a double-precision complex floating-point matrix to specified values.
* Sets the off-diagonal elements and the diagonal elements of a double-precision complex floating-point matrix to specified values using alternative indexing semantics.
*
* @param {string} uplo - specifies whether to set the upper or lower triangular/trapezoidal part of matrix `A`
* @param {NonNegativeInteger} M - number of rows in matrix `A`
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/zlaswp/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var base = require( './base.js' );
// MAIN //

/**
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV`.
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV` and alternative indexing semantics.
*
* @param {PositiveInteger} N - number of columns in `A`
* @param {Complex128Array} A - input matrix
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/lapack/base/zrot/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var imag = require( '@stdlib/complex/float64/imag' );
// MAIN //

/**
* Applies a plane rotation with real cosine and complex sine.
* Applies a plane rotation with real cosine and complex sine using alternative indexing semantics.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {Complex128Array} zx - first input array
Expand Down