Capturing non-zeros elements in matrix
古いコメントを表示
Let's say we have a matrix A.From matrix A, I want to remove zeros and create another elements,capturing only non-zeros values. Can you please show me how to perform the above operation.
回答 (3 件)
Jan
2011 年 2 月 27 日
A = [0 2 3; 4 3 0]
B = A(A ~= 0);
Now B is a vector, not a matrix anymore.
1 件のコメント
Walter Roberson
2011 年 2 月 28 日
Or if conciseness is more important than speed:
B = A(~~A)
Andreas Goser
2011 年 2 月 27 日
A=[0 2 3; 4 3 0]
find(A)
2 件のコメント
Walter Roberson
2011 年 2 月 28 日
That would give you the locations of the non-zero elements, but would not in itself create a new array with the non-zero elements. Similar to Jan's answer, this would have to be extended to
B = A(find(A))
Jan
2011 年 2 月 28 日
@Walter: Of course. I'm sure that Andreas believes in the power of the OP to find this obvious solutionby himself.
Walter Roberson
2011 年 2 月 28 日
B = nonzeros(A);
The result will be a column vector.
カテゴリ
ヘルプ センター および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!