find non zero elements put in a matrix

i have a matrix and i want to take the row number of every non-zero element per collumn into a new matrix

回答 (1 件)

Wayne King
Wayne King 2013 年 12 月 5 日

0 投票

A = randi([-2 2],20,10);
idx = find(A~=0);
B = A(idx);
B contains all the nonzero elements of A, but how will you know the size of the matrix ahead of time?

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

質問済み:

2013 年 12 月 5 日

回答済み:

2013 年 12 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by