Home > Scripts > Models > gauss.m

iFit/gauss

PURPOSE ^

y = gauss(p, x, [y]) : Gaussian

SYNOPSIS ^

function y=gauss(varargin)

DESCRIPTION ^

 y = gauss(p, x, [y]) : Gaussian

   iFunc/gauss Gaussian fitting function
     y = p(1)*exp(-0.5*((x-p(2))/p(3)).^2) + p(4);

   The HalfWidth parameter is the Gaussian square root variance (Sigma). 
   The 'true' half width is thus 1.177*HalfWidth.

 gauss(width)          creates a model with a specified width(sigma)
 gauss([ parameters ]) creates a model with specified model parameters

 Reference: http://en.wikipedia.org/wiki/Gaussian_function

 input:  p: Gaussian model parameters (double)
            p = [ Amplitude Centre HalfWidth BackGround ]
          or 'guess'
         x: axis (double)
         y: when values are given and p='guess', a guess of the parameters is performed (double)
 output: y: model value
 ex:     y=gauss([1 0 1 1], -10:10); or plot(gauss)

 Version: Nov. 26, 2018
 See also iFunc, iFunc/fits, iFunc/plot, gauss1, lorz
 (c) E.Farhi, ILL. License: EUPL.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Mon 26-Nov-2018 15:08:42 by m2html © 2005. iFit (c) E.Farhi/ILL EUPL 1.1