The find function issue
srambhatla opened this issue · 1 comments
srambhatla commented
the find
function pretty much returns the original matrix. Modify it to take a logical statement like find (X > 0)
and return
argwhere (X > 0 )
X [ argwhere( X > 0 ) ]
this will also make it moreMATLAB
like.