I want to get the indices of non zero elements in a matrix.for example
X <- matrix(c(1,0,3,4,0,5), byrow=TRUE, nrow=2);
should give me something like this
row col
1 1
1 3
2 1
2 3
can any one please tell me how to do that,
Thank you