remove and save row of matrix in while loop
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
NA
el 27 de Nov. de 2019
Respondida: JESUS DAVID ARIZA ROYETH
el 27 de Nov. de 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]
0 comentarios
Respuesta aceptada
JESUS DAVID ARIZA ROYETH
el 27 de Nov. de 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)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!