How can I generate a pseudo random column vector V
古いコメントを表示
for N = [1 2 5 10.^[ 1 : 5 ] ]
V = rand( N, 1 ) ; % I'm not sure if it should look like this
end
I have this cycle, how can I generate a pseudo random column vector V of varying length N (using this cycle)
回答 (1 件)
Jon
2022 年 12 月 5 日
0 投票
Yes this will make a random column vector of length N at each iteration.
The values will be uniformly distributed between 0 and 1. If you want them normally distributed use randn.
カテゴリ
ヘルプ センター および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!