From aec199114eb1a4d3a5c66f3a23e6a512afad8a9c Mon Sep 17 00:00:00 2001 From: Planeshifter <1913638+Planeshifter@users.noreply.github.com> Date: Sat, 13 Jul 2024 16:04:27 +0000 Subject: [PATCH] docs: update namespace table of contents Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> --- lib/node_modules/@stdlib/lapack/README.md | 12 ++++++++++++ lib/node_modules/@stdlib/lapack/base/README.md | 12 ++++++++++++ lib/node_modules/@stdlib/ndarray/base/README.md | 2 +- 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/lapack/README.md b/lib/node_modules/@stdlib/lapack/README.md index d970a12a7324..1088f87c9fed 100644 --- a/lib/node_modules/@stdlib/lapack/README.md +++ b/lib/node_modules/@stdlib/lapack/README.md @@ -43,6 +43,12 @@ The namespace contains the following: +
+ +- [`base`][@stdlib/lapack/base]: base (i.e., lower-level) linear algebra package (LAPACK) routines. + +
+ @@ -80,6 +86,12 @@ console.log( objectKeys( lapack ) ); diff --git a/lib/node_modules/@stdlib/lapack/base/README.md b/lib/node_modules/@stdlib/lapack/base/README.md index 8cf757f29326..788b51977982 100644 --- a/lib/node_modules/@stdlib/lapack/base/README.md +++ b/lib/node_modules/@stdlib/lapack/base/README.md @@ -43,6 +43,12 @@ The namespace contains the following: +
+ +- [`dlaswp( N, A, LDA, k1, k2, IPIV, incx )`][@stdlib/lapack/base/dlaswp]: perform a series of row interchanges on an input matrix. + +
+ @@ -80,6 +86,12 @@ console.log( objectKeys( lapack ) ); diff --git a/lib/node_modules/@stdlib/ndarray/base/README.md b/lib/node_modules/@stdlib/ndarray/base/README.md index 29bb31323798..13b17f9dba91 100644 --- a/lib/node_modules/@stdlib/ndarray/base/README.md +++ b/lib/node_modules/@stdlib/ndarray/base/README.md @@ -54,7 +54,7 @@ var o = ns; - [`bufferCtors( dtype )`][@stdlib/ndarray/base/buffer-ctors]: ndarray data buffer constructors. - [`bufferDataTypeEnum( buffer )`][@stdlib/ndarray/base/buffer-dtype-enum]: return the data type enumeration constant of an ndarray data buffer. - [`bufferDataType( buffer )`][@stdlib/ndarray/base/buffer-dtype]: return the data type of an ndarray data buffer. -- [`buffer( dtype, size )`][@stdlib/ndarray/base/buffer]: create a zero-filled contiguous linear ndarray data buffer. +- [`buffer( dtype, size )`][@stdlib/ndarray/base/buffer]: create a contiguous linear ndarray data buffer. - [`bytesPerElement( dtype )`][@stdlib/ndarray/base/bytes-per-element]: return the number of bytes per element provided an underlying array data type. - [`char2dtype( [ch] )`][@stdlib/ndarray/base/char2dtype]: return the data type string associated with a provided single letter character abbreviation. - [`clampIndex( idx, max )`][@stdlib/ndarray/base/clamp-index]: restrict an index to the interval `[0,max]`.