Effacer les filtres
Effacer les filtres

remove and save row of matrix in while loop

1 vue (au cours des 30 derniers jours)
NA
NA le 27 Nov 2019
I have
remove_b=[]
a=[0,1,1,1,1,0,1;0,0,1,1,0,1,1;0,0,0,1,1,0,1;0,0,0,0, 1,1,0;0,0,0,0,0,0,0];
b=[1,1;1,2;1,4;1,5;1,9];
[n1,i]=max(sum(a~=0,2));
while loop
while (n1~=1) && (n1~=0)
b(i,:)=[];
remove_b=b(i,:);
a(i,:)=[];
[n1,i]=max(sum(a~=0,2));
end
I want to save remove_b in while loop
result should be
remove_b=[1,2;1,4;1,5;1,9]

Réponse acceptée

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH le 27 Nov 2019
With a cycle as you require:
remove_b = []
a = [0,1,1,1,1,0,1; 0,0,1,1,0,1,1; 0,0,0,1,1,0,1; 0,0,0 , 0, 1,1,0; 0,0,0,0,0,0,0];
b = [1.1; 1.2; 1.4; 1.5; 1.9];
[n1, i] = max (sum (a ~ = 0.2));
while (n1 ~ = 1) && (n1 ~ = 0)
     
      b (i,:) = [];
      remove_b = vertcat (remove_b, b (i, :));
      a (i,:) = [];
      [n1, i] = max (sum (a ~ = 0.2));
    
end
disp (remove_b)

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by