Skip to content

Commit e2732ae

Browse files
committed
refactor: move package to LAPACK namespace
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent fd286df commit e2732ae

File tree

15 files changed

+12
-12
lines changed

15 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/blas/base/zrot/README.md renamed to lib/node_modules/@stdlib/lapack/base/zrot/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ limitations under the License.
2020

2121
# zrot
2222

23-
> Applies a plane rotation with real cosine and complex sine to a pair of complex vectors.
23+
> Apply a plane rotation with real cosine and complex sine to a pair of complex vectors.
2424
2525
<section class="usage">
2626

2727
## Usage
2828

2929
```javascript
30-
var zrot = require( '@stdlib/blas/base/zrot' );
30+
var zrot = require( '@stdlib/lapack/base/zrot' );
3131
```
3232

3333
#### zrot( N, zx, strideX, zy, strideY, c, s )
@@ -229,7 +229,7 @@ im = imag( z );
229229
## Notes
230230

231231
- If `N <= 0`, both functions leave `zx` and `zy` unchanged.
232-
- `zrot()` corresponds to the [BLAS][blas] level 1 function [`zrot`][zrot].
232+
- `zrot()` corresponds to the [LAPACK][lapack] routine [`zrot`][zrot].
233233

234234
</section>
235235

@@ -248,7 +248,7 @@ var Complex128 = require( '@stdlib/complex/float64/ctor' );
248248
var zcopy = require( '@stdlib/blas/base/zcopy' );
249249
var zeros = require( '@stdlib/array/zeros' );
250250
var logEach = require( '@stdlib/console/log-each' );
251-
var zrot = require( '@stdlib/blas/base/zrot' );
251+
var zrot = require( '@stdlib/lapack/base/zrot' );
252252

253253
function rand() {
254254
return new Complex128( discreteUniform( 0, 10 ), discreteUniform( -5, 5 ) );
@@ -286,7 +286,7 @@ logEach( '(%s,%s) => (%s,%s)', zxc, zyc, zx, zy );
286286

287287
<section class="links">
288288

289-
[blas]: http://www.netlib.org/blas
289+
[lapack]: http://www.netlib.org/lapack
290290

291291
[zrot]: https://netlib.org/lapack/explore-html/d1/d45/group__rot_gaac9d54e7408105ad6f4c810902e75b7a.html#gaac9d54e7408105ad6f4c810902e75b7a
292292

lib/node_modules/@stdlib/blas/base/zrot/lib/index.js renamed to lib/node_modules/@stdlib/lapack/base/zrot/lib/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
'use strict';
2020

2121
/**
22-
* BLAS level 1 routine to apply a plane rotation with real cosine and complex sine.
22+
* LAPACK auxiliary routine to apply a plane rotation with real cosine and complex sine.
2323
*
24-
* @module @stdlib/blas/base/zrot
24+
* @module @stdlib/lapack/base/zrot
2525
*
2626
* @example
2727
* var Complex128Array = require( '@stdlib/array/complex128' );
2828
* var Complex128 = require( '@stdlib/complex/float64' );
2929
* var real = require( '@stdlib/complex/float64/real' );
3030
* var imag = require( '@stdlib/complex/float64/imag' );
31-
* var zrot = require( '@stdlib/blas/base/zrot' );
31+
* var zrot = require( '@stdlib/lapack/base/zrot' );
3232
*
3333
* var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
3434
* var zy = new Complex128Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );
@@ -58,7 +58,7 @@
5858
* var Complex128Array = require( '@stdlib/array/complex128' );
5959
* var real = require( '@stdlib/complex/float64/real' );
6060
* var imag = require( '@stdlib/complex/float64/imag' );
61-
* var zrot = require( '@stdlib/blas/base/zrot' );
61+
* var zrot = require( '@stdlib/lapack/base/zrot' );
6262
*
6363
* var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
6464
* var zy = new Complex128Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] );

0 commit comments

Comments
 (0)