how to take the non zero values from one matrix and put them in another??
3 次查看(过去 30 天)
显示 更早的评论
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
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?
采纳的回答
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!