Hello,
I have a matrix with the values of either zero or one; I want to find non zero elements in every coloumn and locate the indices of each non zero element in every coloumn of a new matrix. For example, let's say my original matrix looks like this:
a =
0 1 1
0 0 1
1 1 1
I want the indices of non zero element in a new matrix look like this:
b =
0 1 1
0 0 2
3 3 3
How can I do it? I tried with the find function but without any success.
Thanks in advance,
Tilek

 채택된 답변

KSSV
KSSV 2020년 2월 10일
편집: KSSV 2020년 2월 10일

0 개 추천

iwant = zeros(size(A)) ;
for i = 1:size(A,1)
if any(A(i,:))
iwant(i,A(i,:)~=0) = i ;
end
end

추가 답변 (1개)

Steven Lord
Steven Lord 2020년 2월 10일

1 개 추천

Use implicit expansion.
A = [0 1 1; 0 0 1; 1 1 1];
R = (1:size(A, 1)).';
B = A.*R

댓글 수: 3

Tilek Zhumabek
Tilek Zhumabek 2020년 2월 10일
it also works. Thanks!
KSSV
KSSV 2020년 2월 11일
+1 ...I tried without using loop....it didn't flash in my mind that time.
KSSV
KSSV 2020년 2월 11일
편집: KSSV 2020년 2월 11일
@Tilek Zhumabek this is the best answer compared to mine. You should accept this answer.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Spline Postprocessing에 대해 자세히 알아보기

질문:

2020년 2월 10일

편집:

2020년 2월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by