find all indices in a matrix

1 次查看(过去 30 天)
How can I find all indices in a matrix to include the zero and non-zero elements? .Thanks

采纳的回答

Walter Roberson
Walter Roberson 2017-1-10
find(ones(size(TheMatrix))
This is not typically useful. Instead you would normally use something like
[R, C] = ndgrid(1:size(TheMatrix,1), 1:size(TheMatrix,2));
and then R will contain row indices and C would contain column indices, so R(I,J) will always be I and C(I,J) will always be J. This is mostly used in a form such as
RC = [R(:), C(:)];
This can also be created as
[R, C] = ind2sub(size(TheMatrix), 1:numel(TheMatrix));
RC = [R(:), C(:)];
  2 个评论
Oday Shahadh
Oday Shahadh 2017-1-10
Dear Walter, how can I find the indices of the max. and min in the syntax
DDDD = accumarray(OrbNO,elev,[],@(x) max(x)-min(x), 0);

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by