gaussian.m
来自「Basic function to locate and measure the」· M 代码 · 共 7 行
M
7 行
function g = gaussian(x,pos,wid)% gaussian(x,pos,wid) = gaussian peak centered on pos, half-width=wid% x may be scalar, vector, or matrix, pos and wid both scalar% T. C. O'Haver, 1988% Example: gaussian([1 2 3],1,2) gives result [0.5000 1.0000 0.5000]g = exp(-((x-pos)./(0.6006.*wid)) .^2);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?