matlab中怎么定义一个函数是服从正态分布的

matlab中怎么定义一个函数是服从正态分布的

是要生成服从正太分布的随机数么?

>> help normrnd

NORMRND Random matrices from normal distribution.
R = NORMRND(MU,SIGMA) returns a matrix of random numbers chosen
from the normal distribution with parameters MU and SIGMA.

The size of R is the common size of MU and SIGMA if both are matrices.
If either parameter is a scalar, the size of R is the size of the other
parameter. Alternatively, R = NORMRND(MU,SIGMA,M,N) returns an M by N
matrix.

就是R=normrnd(平均,标准差,行数,列数)
温馨提示:内容为网友见解,仅供参考
第1个回答  2016-01-01
Matlab自带正态分布函数
1. Matlab自带的正态分布函数为 normpdf

2.使用该函数验证一下上期的日志中当x=0,u=0,sigma=1时的数值为多少。
>> y=normpdf(0,0,1)
y =
3.9894e-001
该值基本与上期图中的数值保持一致。
3.用该函数画出正态分布曲线
x=-7:0.01:7
y=normpdf(x,0,1)
Plot(x,y)
可得出去上期基本一致的图形。
相似回答