Replace zeros with non-zero values from another array
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Pelajar UM
am 9 Mär. 2022
Beantwortet: Arif Hoq
am 9 Mär. 2022
Output1:
71
0
74
75
85
0
88
Output 2:
39242
32
8385
0
17854
74
10499
I want to take the rows with zero in Output 1 and replace them with values in same rows of Output2.
Output3:
71
32 %This is from Output 2
74
75
85
74
88 %This is from Output 2
Any ideas?
0 Kommentare
Akzeptierte Antwort
Arif Hoq
am 9 Mär. 2022
output1=[71;0 ;74 ;75 ;85 ;0 ;88 ];
output2=[39242;32;8385 ;0;17854; 74 ;10499];
output1(output1==0)=output2(output1==0);
output3=output1
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Multidimensional Arrays 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!