Using normrnd for generating natural values (without decimal values)
1 ビュー (過去 30 日間)
表示 古いコメント
I would like to generate data with average of 27 and standard deviation of 1.41, but I would like the data have no decimal values, ex to be like this 12, 24, 27 ... . Could you please help me how I can do so?
回答 (1 件)
Sam Chak
2022 年 6 月 14 日
編集済み: Sam Chak
2022 年 6 月 14 日
How about this data set {25, 26, 27, 27, 28, 29}?
A = [25, 26, 27, 27, 28, 29]
M = mean(A)
S = std(A)
5 件のコメント
Sam Chak
2022 年 6 月 15 日
Many thanks to @Walter Roberson for explaning and showing the Permutation search procedure. The permutation-based method is effective.
参考
カテゴリ
Find more on Tables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!