Skip to content

Commit c4b8871

Browse files
committed
Auto-generated commit
1 parent 8529584 commit c4b8871

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ A total of 3 issues were closed in this release:
7979

8080
<details>
8181

82+
- [`defed16`](https://github.com/stdlib-js/stdlib/commit/defed163077b2e81d04aecb77ad15d14f71b2207) - **chore:** minor clean-up _(by Philipp Burckhardt)_
83+
- [`c8bf1de`](https://github.com/stdlib-js/stdlib/commit/c8bf1de9e8487400542c53b1f435b607976043b8) - **docs:** fix parameter description _(by Philipp Burckhardt)_
8284
- [`01d9619`](https://github.com/stdlib-js/stdlib/commit/01d9619612325b9d7a3429a4aa714929762e7beb) - **feat:** add `lapack/base/dlaset` [(#7467)](https://github.com/stdlib-js/stdlib/pull/7467) _(by Aayush Khanna, Athan Reines)_
8385
- [`e81850c`](https://github.com/stdlib-js/stdlib/commit/e81850c22c77fcaf13fba4e78f93f14088232ae7) - **chore:** minor cleanup in `lapack/base/dgttrf` [(#7383)](https://github.com/stdlib-js/stdlib/pull/7383) _(by Aayush Khanna)_
8486
- [`58679fa`](https://github.com/stdlib-js/stdlib/commit/58679fa33df1b41d2e4f043a2dce327233c59efa) - **chore:** fix editorconfig lint errors [(#7348)](https://github.com/stdlib-js/stdlib/pull/7348) _(by Deepak Singh, Athan Reines)_

base/dlaset/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ interface Routine {
2929
/**
3030
* Sets the off-diagonal elements and the diagonal elements of a double-precision floating-point matrix to specified values.
3131
*
32-
* @param order - storage layout of `A` and `B`
32+
* @param order - storage layout of `A`
3333
* @param uplo - specifies whether to set the upper or lower triangular/trapezoidal part of matrix `A`
3434
* @param M - number of rows in matrix `A`
3535
* @param N - number of columns in matrix `A`
@@ -77,7 +77,7 @@ interface Routine {
7777
/**
7878
* Sets the off-diagonal elements and the diagonal elements of a double-precision floating-point matrix to specified values.
7979
*
80-
* @param order - storage layout of `A` and `B`
80+
* @param order - storage layout of `A`
8181
* @param uplo - specifies whether to set the upper or lower triangular/trapezoidal part of matrix `A`
8282
* @param M - number of rows in matrix `A`
8383
* @param N - number of columns in matrix `A`

base/dlaset/lib/dlaset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var base = require( './base.js' );
3131
/**
3232
* Sets the off-diagonal elements and the diagonal elements of a double-precision floating-point matrix to specified values.
3333
*
34-
* @param {string} order - storage layout of `A` and `B`
34+
* @param {string} order - storage layout of `A`
3535
* @param {string} uplo - specifies whether to set the upper or lower triangular/trapezoidal part of matrix `A`
3636
* @param {NonNegativeInteger} M - number of rows in matrix `A`
3737
* @param {NonNegativeInteger} N - number of columns in matrix `A`

base/dlaset/lib/ndarray.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ var base = require( './base.js' );
2828
/**
2929
* Sets the off-diagonal elements and the diagonal elements of a double-precision floating-point matrix to specified values using alternative indexing semantics.
3030
*
31-
* @private
3231
* @param {string} uplo - specifies whether to set the upper or lower triangular/trapezoidal part of matrix `A`
3332
* @param {NonNegativeInteger} M - number of rows in matrix `A`
3433
* @param {NonNegativeInteger} N - number of columns in matrix `A`

base/dlaset/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@
5757
"dlaset",
5858
"initialize",
5959
"set",
60-
"exchange",
61-
"permute",
62-
"permutedims",
6360
"linear",
6461
"algebra",
6562
"subroutines",

0 commit comments

Comments
 (0)