ngaussian.m
来自「A fourier filter for time-series signals」· M 代码 · 共 7 行
M
7 行
function g = ngaussian(x,pos,wid,n)% ngaussian(x,pos,wid) = peak centered on x=pos, half-width=wid% x may be scalar, vector, or matrix, pos and wid both scalar% Shape is Gaussian when n=1. Becomes more rectangular as n increases.% T. C. O'Haver, 2006% Example: ngaussian([1 2 3],1,2,1) gives result [1.0000 0.5000 0.0625]g = exp(-((x-pos)./(0.6006.*wid)) .^(2*round(n)));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?