Fix rows to columns for the field cols in struct Matrix

This commit is contained in:
Kinar 2023-12-14 09:02:05 -08:00
parent f4bbfef674
commit 5e75a169d3

View File

@ -27,7 +27,7 @@ struct Matrix {
// The number of rows in the matrix. // The number of rows in the matrix.
long rows; long rows;
// The number of rows in the matrix. // The number of columns in the matrix.
long cols; long cols;
// The matrix data. // The matrix data.