diff --git a/iter/README.md b/iter/README.md
index 4a040e9b..3eecb22e 100644
--- a/iter/README.md
+++ b/iter/README.md
@@ -43,9 +43,13 @@ var o = ns;
+- [`nditerColumnEntries( x[, options] )`][@stdlib/ndarray/iter/column-entries]: create an iterator which returns `[index, column]` pairs for each column in a matrix (or stack of matrices).
- [`nditerColumns( x[, options] )`][@stdlib/ndarray/iter/columns]: create an iterator which iterates over each column in a matrix (or stack of matrices).
- [`nditerEntries( x[, options] )`][@stdlib/ndarray/iter/entries]: create an iterator which returns `[index, value]` pairs for each element in a provided `ndarray`.
- [`nditerIndices( shape[, options] )`][@stdlib/ndarray/iter/indices]: create an iterator which returns indices for use indexing into an `ndarray` having a specified shape.
+- [`nditerMatrices( x[, options] )`][@stdlib/ndarray/iter/matrices]: create an iterator which iterates over each matrix in a stack of matrices.
+- [`nditerMatrixEntries( x[, options] )`][@stdlib/ndarray/iter/matrix-entries]: create an iterator which returns `[index, matrix]` pairs for each matrix in a stack of matrices.
+- [`nditerRowEntries( x[, options] )`][@stdlib/ndarray/iter/row-entries]: create an iterator which returns `[index, row]` pairs for each row in a matrix (or stack of matrices).
- [`nditerRows( x[, options] )`][@stdlib/ndarray/iter/rows]: create an iterator which iterates over each row in a matrix (or stack of matrices).
- [`nditer2arrayEach( iterator )`][@stdlib/ndarray/iter/to-array-each]: create an iterator which converts each iterated `ndarray` to a generic array.
- [`nditerValues( x[, options] )`][@stdlib/ndarray/iter/values]: create an iterator which returns individual elements from a provided `ndarray`.
@@ -91,12 +95,20 @@ console.log( objectKeys( ns ) );
+[@stdlib/ndarray/iter/column-entries]: https://github.com/stdlib-js/ndarray/tree/main/iter/column-entries
+
[@stdlib/ndarray/iter/columns]: https://github.com/stdlib-js/ndarray/tree/main/iter/columns
[@stdlib/ndarray/iter/entries]: https://github.com/stdlib-js/ndarray/tree/main/iter/entries
[@stdlib/ndarray/iter/indices]: https://github.com/stdlib-js/ndarray/tree/main/iter/indices
+[@stdlib/ndarray/iter/matrices]: https://github.com/stdlib-js/ndarray/tree/main/iter/matrices
+
+[@stdlib/ndarray/iter/matrix-entries]: https://github.com/stdlib-js/ndarray/tree/main/iter/matrix-entries
+
+[@stdlib/ndarray/iter/row-entries]: https://github.com/stdlib-js/ndarray/tree/main/iter/row-entries
+
[@stdlib/ndarray/iter/rows]: https://github.com/stdlib-js/ndarray/tree/main/iter/rows
[@stdlib/ndarray/iter/to-array-each]: https://github.com/stdlib-js/ndarray/tree/main/iter/to-array-each