Returns a matrix with a row or column removed (pulled out).
The matrix
The index of the row or column to pull
The axis to pull from, which is 0 for the rows or 1 for the columns
const result = Chalkboard.matr.pull([[1, 2], [3, 4]], 0, 0); // Removes the first row Copy
const result = Chalkboard.matr.pull([[1, 2], [3, 4]], 0, 0); // Removes the first row
Returns a matrix with a row or column removed (pulled out).