How do I find the indices of non-zero rows in a matrix?
3 answers
Here where ab (uses) - fast matrix multiplication in MATLAB
idx = find(abs(A)*ones(size(A,2),1))
+1
source to share