Skip to content

Commit 5cffc14

Browse files
committed
fix Javadoc
1 parent 1207be1 commit 5cffc14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/net/jamu/matrix/Matrices.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3751,7 +3751,7 @@ public static MatrixF colsAverage(MatrixF A) {
37513751
* @return a Hankel matrix produced by stacking time-shifted snapshots of
37523752
* {@code data}
37533753
* @throws IllegalArgumentException
3754-
* if delays < 0 or delays >= data.numColumns()
3754+
* if delays &lt; 0 or delays &ge; data.numColumns()
37553755
* @since 1.4.7
37563756
*/
37573757
public static MatrixD timeDelayEmbeddingD(MatrixD data, int delays) {
@@ -3794,7 +3794,7 @@ public static MatrixD timeDelayEmbeddingD(MatrixD data, int delays) {
37943794
* @return a Hankel matrix produced by stacking time-shifted snapshots of
37953795
* {@code data}
37963796
* @throws IllegalArgumentException
3797-
* if delays < 0 or delays >= data.numColumns()
3797+
* if delays &lt; 0 or delays &ge; data.numColumns()
37983798
* @since 1.4.7
37993799
*/
38003800
public static MatrixF timeDelayEmbeddingF(MatrixF data, int delays) {

0 commit comments

Comments
 (0)