how to take the non zero values from one matrix and put them in another??

3 ビュー (過去 30 日間)
Dimitris
Dimitris 2011 年 7 月 25 日
I have a matrix [640 640] with few non zero values and many zeros. I want to put all the non zero values in a new matrix. Something like:
for i=1:640
for j=1:640
if A(i,j)~=0
B(i,j)=A(i,j)
end
end
end
But this doesn't work.. Any suggestions?
  1 件のコメント
Fangjun Jiang
Fangjun Jiang 2011 年 7 月 25 日
What do you mean doesn't work. There is an easy way to do it which uses logic index. What value do you want for other elements in B?

サインインしてコメントする。

採用された回答

Fangjun Jiang
Fangjun Jiang 2011 年 7 月 25 日

その他の回答 (1 件)

Florin Neacsu
Florin Neacsu 2011 年 7 月 25 日
Try :
ind1=A~=0;
B(ind1)=A(ind1);
Regards, Florin
  1 件のコメント
Fangjun Jiang
Fangjun Jiang 2011 年 7 月 25 日
For this particular case, B would be the same as A.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by