Data comparison and selection the smallest
Mostra commenti meno recenti
Hello. I have a matrix A which has size of 24X5. I want each row in matrix A to be selected the smallest and stored in matrix B. Below is the code I wrote but it does not work (error: Index in position 2 exceeds array bounds (must not exceed 5)).
for i=1:24
for j=1:5
if A(i,j)<A(i,j+1)
B(i)=A(i)
else
B(i)=A(j+1)
end
end
end
Your help is very important!!!!
Risposta accettata
Più risposte (1)
madhan ravi
il 11 Giu 2020
Modificato: madhan ravi
il 11 Giu 2020
5-1
1 Commento
stelios loizidis
il 11 Giu 2020
Categorie
Scopri di più su Resizing and Reshaping Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!