DOE points normal distrbution

1 次查看(过去 30 天)
Hazim Hamad
Hazim Hamad 2021-1-4
Dear sir
if i have the mean and standarded deviation and I need to generate a number of points folowing the gaussien normal distrbution how can i do that please.

回答(2 个)

David Hill
David Hill 2021-1-4
m=standard_deviation.*randn(1,1000)+mean;%generates an array of 1000 numbers
  3 个评论
David Hill
David Hill 2021-1-5
Not sure I understand you completely.
x= [.1,.2,.3,.4,.2,.4,.5,.6];%is there a reason why you can't make x just a row vector?
sd=.1*x;
n=sd.*randn(20,length(x))+x;%generates 20 numbers in each column corresponding to requested standard deviation and mean
Hazim Hamad
Hazim Hamad 2021-1-6
Many Thank this is because x is a matrix of design points and each row represents a case so your solution is correct for just one row would you help make it valid for two rows please.
x= [ 0.1 0.2 0.3 0.4
0.2 0.4 0.5 0.6 ] ;
ist row is 0.1 0.2 0.3 0.4
2nd row is 0.2 0.4 0.5 0.6
regards

请先登录,再进行评论。


Hazim Hamad
Hazim Hamad 2021-3-26
Hi
for the random normal distrbution can you help me to use seed to obtain the same result at each trail.
Regards
Hazzim

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by