errintg.m
来自「matlab的数学物理方程数值算法源程序。这是"Numerical Method」· M 代码 · 共 10 行
M
10 行
function f = errintg(x,param)
% Error function integrand
% Inputs
% x Value where integrand is evaluated
% param Parameter list (not used)
% Output
% f Integrand of the error function
f = exp(-x^2);
return;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?