Reputation: 2319
Let's say I have a matrix A and a vector B. Is it possible to use the values in vector B as indices to select one value from each row in matrix A? Example:
A = [1, 2, 3;
4, 5, 6;
7, 8, 9;]
B = [1;3;1]
C = A(B) or C = A(:,B)
giving:
C = [1; 6; 7]
Of course I could do this with a for loop but with bigger matrices it will take a while. I would also like to use this to make a logical matrix in the following fashion:
A = zeros(3,3)
B = [1;3;1]
A(B) = 1
A = [1, 0, 0;
0, 0, 1;
1, 0, 0]
Thanks for any advice you are able to give me.
Upvotes: 7
Views: 2223
Reputation: 31
As per my understanding, the way to go about creating a logical matrix is below:
>A = eye(3,3)
>B = [1;3;1]
>A(B,:) =
>
>[ 1 0 0;
> 0 0 1;
> 1 0 0; ]
Upvotes: 3
Reputation: 13081
You need to create linear indices for that. Following your example:
octave-3.8.2> a = [1 2 3
4 5 6
7 8 9];
octave-3.8.2> b = [1 3 1];
octave-3.8.2> ind = sub2ind (size (a), 1:rows (a), b);
octave-3.8.2> c = a(ind)
c =
1 6 7
Upvotes: 9