swapping two matrices with similar randomness

1 view (last 30 days)
I have two matrices.
I want the random change to be made in one matrix to be done in the same way in the other matrix. (note : my real matrix value is different from these)
For example:
A matrix:
1 2 3 4 5
B matrix :
0.1
0.2
0.3
0.4
0.5
Let's assume that the location of the matrix A has changed.
A matrix :
2 4 5 1 3
B matrix:
0.2
0.4
0.5
0.1
0.3
In other words, since the value of 1 is randomly assigned to the fourth column in the A matrix, the value of 0.1 is assigned to the fourth column.
Another example:
A matrix:
4 5 1 2 3
B matrix:
0.4
0.5
0.1
0.2
0.3

Answers (2)

John D'Errico
John D'Errico on 24 Mar 2022
You just need to learn how to use indexing.
A = [1 2 3 4 5];
B = zeros(5,2);
B(:,2) = A/10
B = 5×2
0 0.1000 0 0.2000 0 0.3000 0 0.4000 0 0.5000
Note that even thoiugh B(:,2) is a column vector, and A is a row vector, MATLAB is smart enough to see there are 5 elements to insert into B.
  2 Comments
Berfin Çetinkaya
Berfin Çetinkaya on 24 Mar 2022
That's not what I wanted to say. I assigned the numbers randomly so indexing doesn't matter. What I want to do is I want the rows in matrix B to swap places when column places in matrix A change. I want the change in matrix B to be made according to matrix A.
John D'Errico
John D'Errico on 24 Mar 2022
According to EVERY example you show, you would create B simply by dividing A by 10. While that may not be how you are thinking about it, that is EXACTLY the result you seem to want in your exampels.
A = [2 4 5 1 3];
B = A'/10
B = 5×1
0.2000 0.4000 0.5000 0.1000 0.3000
Feel free to tell me that is not exactly the result you showed you wanted. I would be forced to disagree, IF you did make some argument to that effect. So then if if you still think this does not do exactly what you want, then perhaps you can give a better example?

Sign in to comment.


Voss
Voss on 24 Mar 2022
If you are in control of how the rearranging is done to both matrices, you can create a vector of random indices and then index both matrices using that vector:
% initial state:
A = [1 2 3 4 5];
B = [0.1; 0.2; 0.3; 0.4; 0.5];
% generate the random index vector:
idx = randperm(numel(A))
idx = 1×5
4 1 2 5 3
% rearrange A and B in the same manner:
A_new = A(idx)
A_new = 1×5
4 1 2 5 3
B_new = B(idx)
B_new = 5×1
0.4000 0.1000 0.2000 0.5000 0.3000
On the other hand, if you are not in control of how A is rearranged, but you need to rearrange B in the same way A was rearranged, you can do that too, if you have the original A:
% initial state:
A = [1 2 3 4 5];
B = [0.1; 0.2; 0.3; 0.4; 0.5];
% some process rearranges A randomly:
A_new = A(randperm(numel(A)))
A_new = 1×5
2 1 5 3 4
% find idx, which tells you where each element of A_new was in A:
[~,idx] = ismember(A_new,A);
% rearrange B the same way to form B_new:
B_new = B(idx)
B_new = 5×1
0.2000 0.1000 0.5000 0.3000 0.4000

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!