diff --git a/lib/node_modules/@stdlib/complex/float32/base/README.md b/lib/node_modules/@stdlib/complex/float32/base/README.md
index 8ee85ccca8ea..e88f014905ad 100644
--- a/lib/node_modules/@stdlib/complex/float32/base/README.md
+++ b/lib/node_modules/@stdlib/complex/float32/base/README.md
@@ -58,7 +58,9 @@ The namespace contains the following functions:
- [`add( z1, z2 )`][@stdlib/complex/float32/base/add]: add two single-precision complex floating-point numbers.
+- [`add3( z1, z2, z3 )`][@stdlib/complex/float32/base/add3]: compute the sum of three single-precision complex floating-point numbers.
- [`identity( z )`][@stdlib/complex/float32/base/identity]: evaluate the identity function of a single-precision complex floating-point number.
+- [`muladd( alpha, x, y )`][@stdlib/complex/float32/base/mul-add]: perform a multiply-add operation involving three single-precision complex floating-point numbers.
- [`mul( z1, z2 )`][@stdlib/complex/float32/base/mul]: multiply two single-precision complex floating-point numbers.
- [`neg( z )`][@stdlib/complex/float32/base/neg]: negate a single-precision complex floating-point number.
- [`scale( alpha, c )`][@stdlib/complex/float32/base/scale]: scale a single-precision complex floating-point number by a real-valued single-precision floating-point scalar constant.
@@ -115,8 +117,12 @@ console.log( objectKeys( ns ) );
[@stdlib/complex/float32/base/add]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/add
+[@stdlib/complex/float32/base/add3]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/add3
+
[@stdlib/complex/float32/base/identity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/identity
+[@stdlib/complex/float32/base/mul-add]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/mul-add
+
[@stdlib/complex/float32/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/mul
[@stdlib/complex/float32/base/neg]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/neg
diff --git a/lib/node_modules/@stdlib/ndarray/base/README.md b/lib/node_modules/@stdlib/ndarray/base/README.md
index cff48beea53c..70f63370a152 100644
--- a/lib/node_modules/@stdlib/ndarray/base/README.md
+++ b/lib/node_modules/@stdlib/ndarray/base/README.md
@@ -45,6 +45,7 @@ var o = ns;
- [`anyBy( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/any-by]: test whether at least one element in an ndarray passes a test implemented by a predicate function.
- [`any( arrays )`][@stdlib/ndarray/base/any]: test whether at least one element in an ndarray is truthy.
+- [`assignScalar( arrays )`][@stdlib/ndarray/base/assign-scalar]: assign a scalar value to every element of an output ndarray.
- [`assign( arrays )`][@stdlib/ndarray/base/assign]: assign elements in an input ndarray to elements in an output ndarray.
- [`atleastnd( ndims, arrays )`][@stdlib/ndarray/base/atleastnd]: convert a list of values (scalars and/or ndarrays) to ndarrays having at least a specified number of dimensions.
- [`binaryInputCastingDataType( idtype1, idtype2, odtype, policy )`][@stdlib/ndarray/base/binary-input-casting-dtype]: resolve the casting data type for an input ndarray provided to a binary function.
@@ -110,6 +111,7 @@ var o = ns;
- [`array2ndarray( buf, order )`][@stdlib/ndarray/base/from-array]: convert an array to a one-dimensional ndarray.
- [`scalar2ndarrayLike( x, value )`][@stdlib/ndarray/base/from-scalar-like]: convert a scalar value to a zero-dimensional ndarray having the same data type as a provided ndarray.
- [`scalar2ndarray( value, dtype, order )`][@stdlib/ndarray/base/from-scalar]: convert a scalar value to a zero-dimensional ndarray.
+- [`full( value, dtype, shape, order )`][@stdlib/ndarray/base/full]: create an ndarray filled with a specified value and having a specified shape and data type.
- [`includes( arrays )`][@stdlib/ndarray/base/includes]: test whether an ndarray contains a specified value.
- [`ind( idx, max, mode )`][@stdlib/ndarray/base/ind]: return an index given an index mode.
- [`ind2sub( shape, strides, offset, order, idx, mode )`][@stdlib/ndarray/base/ind2sub]: convert a linear index to an array of subscripts.
@@ -278,6 +280,8 @@ console.log( objectKeys( ns ) );
[@stdlib/ndarray/base/any]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/any
+[@stdlib/ndarray/base/assign-scalar]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assign-scalar
+
[@stdlib/ndarray/base/assign]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/assign
[@stdlib/ndarray/base/atleastnd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/atleastnd
@@ -408,6 +412,8 @@ console.log( objectKeys( ns ) );
[@stdlib/ndarray/base/from-scalar]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/from-scalar
+[@stdlib/ndarray/base/full]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/full
+
[@stdlib/ndarray/base/includes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/includes
[@stdlib/ndarray/base/ind]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/ind