Finding different values of a matrix in a single loop

1 visualización (últimos 30 días)
Bruno Baptista
Bruno Baptista el 1 de Dic. de 2020
Comentada: Ameer Hamza el 1 de Dic. de 2020
I have this matrix
4 5
2 8
3 4
5 6
1 3
2 4
2 7
i need to find a number in the matrix wich has to be a variable. For example if i need the number 3 then matlab has to get the first row that contains 3 ( in this case 3 4) then it has to find the first row with the number of the other collumn and do this for the rest of the matrix and has to works for any matrix (n,2)
Starting with the number 3 i should get this :
3 4
2 4
2 7
and then put it on a vector : 3 4 2 7
Was only able to get this till now
cid= [4 5;
2 8;
3 4;
5 6;
1 3;
2 4;
2 7]
z=zeros(1,3);
v=zeros(1,3);
x=3
y=0;
for i=1:linhas
for j=1:colunas
if cid( i,j) == x
v(1,i) = cid(i,2)
z(1,i) = cid(i,1)
z(1:x) = 0;
x = v(i) ;
end
end
end
  6 comentarios
Bruno Baptista
Bruno Baptista el 1 de Dic. de 2020
it has to work for every matrix (n,2); i written 3 for mistake.
last result isnt [2 8] because i want it to start over from the previous row.
Bruno Baptista
Bruno Baptista el 1 de Dic. de 2020
i obtain obtain the [2 7] because after it gets [2 4] then it has to search the number in the other collumn wich is 2

Iniciar sesión para comentar.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 1 de Dic. de 2020
Editada: Ameer Hamza el 1 de Dic. de 2020
Edit: This is modified to follows the rule as you described in your comments.
A = [
4 5
2 8
3 4
5 6
1 3
2 4
2 7];
a = 3;
M = [];
m = a;
count = 1;
col = 1;
while true
[idx, ~] = find(A==a, 1);
if isempty(idx)
break;
end
M(count, :) = A(idx, :);
count = count + 1;
a = setdiff(M(end, :), a);
m(count) = a;
A(1:idx, :) = [];
end
Result
>> M
M =
3 4
2 4
2 7
>> m
m =
3 4 2 7
  9 comentarios
Bruno Baptista
Bruno Baptista el 1 de Dic. de 2020
i think it works now, thks for the effort
Ameer Hamza
Ameer Hamza el 1 de Dic. de 2020
I am glad to be of help!

Iniciar sesión para comentar.

Más respuestas (1)

KSSV
KSSV el 1 de Dic. de 2020
Read about ismember.
A = [ 4 5
2 8
3 4
5 6
1 3
2 4
2 7] ;
xi = 2 ;
[c,ia] = ismember(A(:,1),xi) ;
iwant = A(c,:)
iwant = 3×2
2 8 2 4 2 7

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by