erfx.m

来自「英文书《Digital Signal Processing with Examp」· M 代码 · 共 10 行

M
10
字号
function y=erfx(mu,sigma,x)
% y=erfx(mu,sigma,x)
%
% erfx is the probability that a normally distributed random
% variate with mean mu and standard deviation sigma lies in
% the range {mu,mu+x}.
% See also: erf
v=x/(sqrt(2)*sigma);
y=.5*erf(v);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?