mynormpdf.m

来自「麻省理工学院的人工智能工具箱,很珍贵,希望对大家有用!」· M 代码 · 共 51 行

M
51
字号
function y = normpdf(x,mu,sigma)%NORMPDF Normal probability density function (pdf).%   Y = NORMPDF(X,MU,SIGMA) Returns the normal pdf with mean, MU, %   and standard deviation, SIGMA, at the values in X. %%   The size of Y is the common size of the input arguments. A scalar input  %   functions as a constant matrix of the same size as the other inputs.     %%   Default values for MU and SIGMA are 0 and 1 respectively.%   References:%      [1]  M. Abramowitz and I. A. Stegun, "Handbook of Mathematical%      Functions", Government Printing Office, 1964, 26.1.26.%   Copyright (c) 1993-98 by The MathWorks, Inc.%   $Revision: 2.6 $  $Date: 1997/11/29 01:46:16 $if nargin < 3,     sigma = 1;endif nargin < 2;    mu = 0;endif nargin < 1,     error('Requires at least one input argument.');end[errorcode x mu sigma] = distchck(3,x,mu,sigma);if errorcode > 0    error('Requires non-scalar arguments to match in size.');end%   Initialize Y to zero.y = zeros(size(x));k = find(sigma > 0);if any(k)    xn = (x(k) - mu(k)) ./ sigma(k);    y(k) = exp(-0.5 * xn .^2) ./ (sqrt(2*pi) .* sigma(k));end% Return NaN if SIGMA is negative or zero.k1 = find(sigma <= 0);if any(k1)    tmp   = NaN;    y(k1) = tmp(ones(size(k1))); end

⌨️ 快捷键说明

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