フィルターのクリア

finding and storing non zero elements in a NxN matrix

4 ビュー (過去 30 日間)
Anantha Padmanabhan
Anantha Padmanabhan 2014 年 10 月 1 日
回答済み: Jos (10584) 2014 年 10 月 2 日
Hi, I would like to know how i can determine the non zero elements in a matrix consisting mostly of zeros and store its matrix coordinate positions. So in a 64*64 matrix i can determine the non zero elements by making a for loop like this for ix=1:n
for iy=1:n
if newpositions(ix,iy)==0
%nah u alrite
else
newpsi(ix,iy)=%%%here i want to store the ix and iy elements in an array instead of storing them in a huge ix*iy matrix
end
end
end

回答 (2 件)

José-Luis
José-Luis 2014 年 10 月 1 日

Jos (10584)
Jos (10584) 2014 年 10 月 2 日
help find
M = rand(5) < 0.2 ; % some data
[r,c,v] = find(M) ; % row and column indices of non-zero elements (with values v)

カテゴリ

Help Center および File ExchangeSparse Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by