Finding pair values in a matrix
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
We had to calculate how many pairs we can find for the pythagorean triads for a,b,c when a^2+b^2=c^2. After we found those we had to create a matrix that included all possible pairs for a and b. For a=[1:100] and b=[1:200] I got 184 pairs. So now my matrix z is a 184x2 matrix, but there are definitely some pairs that are repeated. For example, when c=5 we get two possibilities x=3 and y=4, but also x=4 and y=3.
How can I make the code, so that if i have the rows (3,4) and (4,3), either one will be deleted and I can have a new matrix just for the possible pairs without caring which one is x or y?
I tried doing that with groupcounts(z) but that only works with vectors, not matrices. Any ideas?
2 comentarios
the cyclist
el 31 de Mayo de 2020
Editada: the cyclist
el 31 de Mayo de 2020
Can you say exactly what the input is, and exactly what you want the output to be?
Is it just, for example, that if you have a matrix
z = [1 2;
2 1;
3 4;
4 3;
5 6;
6 5];
that you want to return
z2 = [1 2;
3 4;
5 6];
?
It would be helpful if you gave a small, specific example that has enough generality to cover what you want to do.
You can upload data in a MAT file using, the paper-clip icon.
Respuestas (2)
the cyclist
el 31 de Mayo de 2020
If my speculation in the comment above about what you want for z2 is correct, then
z2 = unique(sort(z,2),'row')
3 comentarios
the cyclist
el 31 de Mayo de 2020
Editada: the cyclist
el 31 de Mayo de 2020
Are you absolutely certain you typed the solution code exactly as we wrote it? Because it worked for me.
I'm guessing maybe you wrote
sort(z)
instead of
sort(z,2)
The correct syntax sorts along dimension 2.
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!