Replace value with index in 2D array
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Tha saliem
am 3 Apr. 2017
Kommentiert: Star Strider
am 3 Apr. 2017
Hi I have a 2D array like this
A=[0 0 1; 1 0 1; 0 1 0]
I want to replace 1 in each row with column index value. e.g new matrix will be like this:
result=[0 0 3 ; 1 0 3 ; 0 2 0]
Thanks in advance
0 Kommentare
Akzeptierte Antwort
Star Strider
am 3 Apr. 2017
This works:
A=[0 0 1; 1 0 1; 0 1 0];
[~,CIV] = find(A); % ‘CIV’ = ‘Column Index Value’
A(A>0) = CIV
result = A
result =
0 0 3
1 0 3
0 2 0
5 Kommentare
Weitere Antworten (2)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!