フィルターのクリア

vector of random natural numbers to matrix

3 ビュー (過去 30 日間)
Thomas Kozinski
Thomas Kozinski 2021 年 3 月 12 日
回答済み: David Hill 2021 年 3 月 12 日
Hello, I have a problem with the task, if someone could direct me / tell me how to do it
I have to do:
Create a 100-element vector of random positive numbers and then write it as a matrix with the number of rows equal to the number of unique numbers in the vector and 100 columns
and then to each element of the original vector encode its value as 1 in the field with index equal to the value of this element (one-hot encoding).
Thanks in advance!!!
  2 件のコメント
Jan
Jan 2021 年 3 月 12 日
What have you tried so far? What is your Matlab related question?
Adam Danz
Adam Danz 2021 年 3 月 12 日
hint:
doc rand
doc randi
doc ismember
doc isequal

サインインしてコメントする。

採用された回答

David Hill
David Hill 2021 年 3 月 12 日
a=randi(100,1,100);
b=unique(a);
c=zeros(length(b),100);
for k=1:length(b)
c(k,:)=a==b(k);
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by