remove and save row of matrix in while loop

1 Ansicht (letzte 30 Tage)
NA
NA am 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]

Akzeptierte Antwort

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH am 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)

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements 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!

Translated by