Could anyone help me how to store the result together in single matrix.

1 vue (au cours des 30 derniers jours)
jaah navi
jaah navi le 19 Sep 2019
Commenté : jaah navi le 19 Sep 2019
code:
B=[1 2;
1 3;
2 5;
2 4;
3 5;
4 6;
4 5]
for i=1:7
bbb= 1:6;
bb= B(i,1:2)
bbb= setdiff(bbb,bb)
result= [bb,bbb]
end
the above code executes and gives the result ,but i need to store all the result together in one matrix.Could anyone please help me on it.
  3 commentaires
Rik
Rik le 19 Sep 2019
@Ankit, note that your code overwrites the result every iteration.
Ankit
Ankit le 19 Sep 2019
@rik yes I didnt notice that thanks for pointing out!

Connectez-vous pour commenter.

Réponse acceptée

Adam
Adam le 19 Sep 2019
Making minimal changes to your code:
B=[1 2;
1 3;
2 5;
2 4;
3 5;
4 6;
4 5]
for i=1:7
bbb= 1:6;
bb= B(i,1:2)
bbb= setdiff(bbb,bb)
BB(i,:) = [bb,bbb]
end
though it could be made neater.
It would be good if you didn't keep opening questions to ask the same thing many times. Sooner or later people will just stop answering at all.
  2 commentaires
Rik
Rik le 19 Sep 2019
I'm already at the point I only open some of the questions. Judging by whose comments/answers I see I'm not the only one.
jaah navi
jaah navi le 19 Sep 2019
if
BB =[ 1 3 2 4 5 6;
3 4 1 2 5 6;
1 5 2 3 4 6;
2 3 1 4 5 6;
4 5 1 2 3 6;
1 6 2 3 4 5;
4 6 1 2 3 5;
5 6 1 2 3 4]
now i want to group the number into sets
with respect to all the rows the first two numbers needs to be grouped into one set{1 3},then for rest of the numbers it needs to check with respect to all the rows first two numbers if it remains to be same then the next two numbers needs to be grouped or else the next three numbers needs to be grouped {2 4 5} and the last number should be as {6}.
for second row {3 4} {1 2 5} {6}
for third row {1 5} {2 3} {4 6}
for fourth row{2 3}{1 4 5} {6}
and so on.
could you please help me on this.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by