フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Hi,I have a vector which contains 10 entries. I choose 6 entries among all entries. now I want to find out the index of chosen entries. how can i do this.?

1 回表示 (過去 30 日間)
fariba amini
fariba amini 2016 年 7 月 16 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
for example: A=[1 3 5 2 7 4 9 1 4 5]; and chosen entries=[1 5 7 4 9 5].and the index I need to calculate is:[1,3,5,6,7,10]. I have no idea how to calculate index of chosen entries. thanks in advance

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 7 月 16 日
編集済み: Azzi Abdelmalek 2016 年 7 月 16 日
idx=find(ismember(A,entries))
%or maybe you want this
A=[1 3 5 2 7 4 9 1 4 5]
entries=[1 5 7 4 9 5]
B=A;
for k=1:numel(entries)
idx(k)=find(B==entries(k),1);
B(1:idx(k))=nan;
end
idx

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by