erfc.m
来自「In the planning stage of a GNSS-measurem」· M 代码 · 共 22 行
M
22 行
function y = erfc(x)
%ERFC Complementary error function.
% Y = ERFC(X) is the complementary error function for each element
% of X. X must be real. The complementary error function is
% defined as:
%
% erfc(x) = 2/sqrt(pi) * integral from x to inf of exp(-t^2) dt.
% = 1 - erf(x).
%
% See also ERF, ERFCX, ERFINV.
% Ref: Abramowitz & Stegun, Handbook of Mathematical Functions, sec. 7.1.
% Copyright 1984-2001 The MathWorks, Inc.
% $Revision: 5.11 $ $Date: 2001/04/15 12:01:42 $
% Derived from a FORTRAN program by W. J. Cody.
if ~isreal(x), error('X must be real.'); end
siz = size(x);
x = x(:);
y = reshape(erfcore(x,1), siz);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?