How can I index a vector based on the vector's values?

조회 수: 5 (최근 30일)
Shahriyar Karim
Shahriyar Karim 2020년 3월 13일
댓글: Shahriyar Karim 2020년 3월 13일
Say I have a vector,
V = [2 5 4 1 3]
and I want to use the numbers of the vector itself to index. Starting from 1, I go to the first element in V; which = 2.
From there, I want to go to the 2nd element of V--5, then 3, then 4, and finally 1.
How would I go about extracting Vnew = [1 2 4 5 3]?
So far I've tried:
V(V) = [5 3 1 2 4]
I'm assuming it'll require some sort of loop but I'm completely stumped right now.
EDIT: Apologies for the confusion in the explanation above; I don't need the produced vector, but the order in which it's produced--if that makes any sense.
Starting at index 1 of V, I get 2. Then I use 2 as the index of V to get 5--use 5 to get 3--3 for 4---4 loops back to 1.
The part I need is the order in which I loop through. The first index will always be 1, but say the first element of V was 3. I'd then go to the THIRD element of V and Vnew for the third element would equal 2. Using this method, I need to output Vnew = [1 2 4 5 3].
  댓글 수: 3
Shahriyar Karim
Shahriyar Karim 2020년 3월 13일
That's an answer I got previously, but it isn't exactly what I'm looking for. I've tried to clarify a bit more in the original post
BobH
BobH 2020년 3월 13일
편집: BobH 2020년 3월 13일
V = [2 5 4 1 3]
sequence followed is 1, then 2 5 3 4, then 1
2 5 3 4 1 are found in V in these positions 1 2 5 3 4
You consistently show a 4 in the third position of your desired output, and I can't see how you place a 4 there.

댓글을 달려면 로그인하십시오.

채택된 답변

BobH
BobH 2020년 3월 13일
편집: BobH 2020년 3월 13일
V = [2 5 4 1 3];
R(1) = V(1);
for i = 2:length(V)
R(end+1) = V( R(i-1) );
end
R % new vector
R =
2 5 3 4 1
% The sequence of indices followed within V
S = [1 R(1:length(V)-1)]
S =
1 2 5 3 4
  댓글 수: 1
Shahriyar Karim
Shahriyar Karim 2020년 3월 13일
Okay this makes sense. I was overthinking it way too much--that's probably why I was confused over the indexing in your other comment; it makes sense now. Thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Fangjun Jiang
Fangjun Jiang 2020년 3월 13일
I believe it is like this
V = [2 5 4 1 3];
newV=zeros(size(V));
index=1;
for k=1:numel(V)
newV(k)=V(index)
index=newV(k);
end
  댓글 수: 2
Shahriyar Karim
Shahriyar Karim 2020년 3월 13일
This is what I got before in a previous answer; but it isn't exactly what I'm looking for. I've edited the original post for a bit more clarification.
Fangjun Jiang
Fangjun Jiang 2020년 3월 13일
I don't get it. Your expected Vnew is wrong according to your explaination.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by