stsievert/swix

The find function issue

srambhatla opened this issue · 1 comments

the find function pretty much returns the original matrix. Modify it to take a logical statement like find (X > 0) and return

  1. argwhere (X > 0 )
  2. X [ argwhere( X > 0 ) ]
    this will also make it more MATLAB like.

This was very recently addressed by 0fa8949! This commit removed find as I find argwhere more clear about what it does than find.