フィルターのクリア

How to generate a set of random numbers 1000 times.

3 ビュー (過去 30 日間)
Sarah E
Sarah E 2014 年 9 月 30 日
回答済み: Image Analyst 2014 年 9 月 30 日
I want to generate n random numbers between certain values 1000 times. I known how to generate the numbers once, but what statement will repeat that task a defined number of times in this case 1000. I then need to write all the values produced to either a csv or excel file.

回答 (1 件)

Image Analyst
Image Analyst 2014 年 9 月 30 日
Did you check the help for rand(), the first example?
data = a + (b-1)*rand(1000, n);
Each row will have your n random values. To write to a csv file, use csvwrite()
csvwrite(filename, data);

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by