Reputation: 595
Is it possible to remove one or more columns or rows from a matrix in breeze?
It's possible in matlab by setting it to an empty matrix but in breeze u get a dimension error.
Upvotes: 2
Views: 448
Reputation: 2293
There's a delete method:
dm.delete(row, Axis._0)
dm.delete(col, Axis._1)
Upvotes: 5