could anyone help me to solve the issue

2 次查看(过去 30 天)
AA=4
I am having matrix as below
A=[2 3;
1 4;
2 4;
3 4]
with respect to first row out of four i am having two numbers 2 and 3.
so i need to have an another variable B in the following manner
B={2 3} {1 4} for first row
{1 4} {2 3} for second row
{2 4} {1 3} third row
{3 4} {1 2} fourth row
could anyone please help me on it.
  1 个评论
Adam
Adam 2019-9-13
Can you please try to give a more relevant title to your questions in general. Almost every question you ask you just give the same generic title. The question box should be for a short summary of what your question is about. Every question on the board could be titled 'Can you please help with this', but it isn't very useful for people scanning the questions for ones they may be able to contribute to.

请先登录,再进行评论。

采纳的回答

John D'Errico
John D'Errico 2019-9-13
Easy enough. Just use setdiff.
A=[2 3;
1 4;
2 4;
3 4];
That is, ...
B = A;
cind = [3 4];
for i = 1:4
B(i,cind(randperm(2))) = setdiff(1:4,B(i,1:2));
end
B is:
B
B =
2 3 4 1
1 4 2 3
2 4 1 3
3 4 1 2
  1 个评论
jaah navi
jaah navi 2019-9-17
The above code works for the matrix
A=[2 3;
1 4;
2 4;
3 4];
could you please help me how it can be done for the following matrix
A=[2 3;
1 4;
2 4];

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by