Would there be a way to allow negative Mata matrix subscripts to indicate exclusion of rows/columns? E.g.
would return y as x except for its first, third, and sixth rows. It's easy to program around this, but having the ability to build row/column exclusion directly into the matrix subscripting would be great.
Code:
mata v=1,3,6 mata y=x[-v,.]
Comment