How to get a data set using Mean and standard deviation

I want to get data set containing 10 points with mean =63 and standard deviation of 2.3. Is there a way to do this in MATLAB

 採用された回答

Dyuman Joshi
Dyuman Joshi 2022 年 6 月 22 日

1 投票

mu=63;
sigma=2.3;
%generate normally distributed numbers
y=randn(1,10);
y=sigma*(y-mean(y))/std(y)+mu
y = 1×10
59.4063 62.3973 64.1918 63.0970 58.7229 64.0962 64.3337 65.7578 62.9910 65.0058
mean(y)
ans = 63
std(y)
ans = 2.3000

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by