Info

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

Create a vector that gives the information about the locations of each element

1 回表示 (過去 30 日間)
Ismaeel
Ismaeel 2016 年 12 月 29 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I have the vector A: A=[1 3 7], and I want to create another array, say B, that contains the locations of the elements of A. That is, B=[1 0 1 0 0 0 1] Thanks
  1 件のコメント
Ismaeel
Ismaeel 2016 年 12 月 29 日
編集済み: James Tursa 2016 年 12 月 29 日
A=[1 3 7];
v=zeros(1,max(A));
% for i=1:length(A)
v(A(:))=1
% end

回答 (1 件)

KSSV
KSSV 2016 年 12 月 29 日
編集済み: KSSV 2016 年 12 月 29 日
A=[1 3 7] ;
B = zeros(1,max(A)) ;
B(A) = 1
Or Straight away
B(A) = 1

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

Community Treasure Hunt

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

Start Hunting!

Translated by