フィルターのクリア

How to generate sample Randomly in Matlab

1 回表示 (過去 30 日間)
Med Future
Med Future 2022 年 3 月 3 日
コメント済み: Walter Roberson 2022 年 3 月 3 日
Hello everyone i hope you are doing well.
I have the following code which generate 4000 sample for a value of 200. and output is the if 1x4000
I want the value to be random from 1 to 1000. and save the result of each value in seperate row
for example value=1 it has 4000 samples in first row, after value=100 it has 4000 samples in second row
value= [200];
Numberofsample = [4000];
output = repmat(value,1,(ceil(sum(Numberofsample)/length(Numberofsample))));

回答 (1 件)

Benjamin Thompson
Benjamin Thompson 2022 年 3 月 3 日
>> output = randn(1,4000);
>> size(output)
ans =
1 4000
  12 件のコメント
Med Future
Med Future 2022 年 3 月 3 日
@Walter Roberson Thanks for the answer.
I have to generate the data for other classes as well. Can i post another question?
Walter Roberson
Walter Roberson 2022 年 3 月 3 日
The method remains the same. Take one random quantity for each "value" and repeat it out to the 4000 or whatever you need.
If the class data is quantized, then you can use a random integer in the range of 1 to the number of quantized values, and use that to index the original data, like
output = repmat( MyCategories(randi(length(MyCategories), length(value), 1), 1, NumberOfCopies);

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

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by