Home > Scripts > Models > quad2d.m

iFit/quad2d

PURPOSE ^

signal = quad2d(p, x, y, {signal}) : 2D Quadratic function

SYNOPSIS ^

function signal=quad2d(varargin)

DESCRIPTION ^

 signal = quad2d(p, x, y, {signal}) : 2D Quadratic function

   iFunc/quad2d 2D Quadratic function (fit 2D function/model)
     x0=p(2); y0=p(3); sx=p(4); sy=p(5); theta=p(6) [given in deg]
     a = cos(theta)^2/2/sx/sx + sin(theta)^2/2/sy/sy;
     b =-sin(2*theta)/4/sx/sx + sin(2*theta)/4/sy/sy;
     c = sin(theta)^2/2/sx/sx + cos(theta)^2/2/sy/sy;
     signal = p(1)*(a*(x-x0).^2+2*b*(x-x0).*(y-y0)+c*(y-y0).^2)+ p(7);

 quad2d([w1 w2])        creates a model with specified widths
 quad2d([ parameters ]) creates a model with specified model parameters

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

 input:  p: quad2d model parameters (double)
            p = [  'Amplitude' 'Centre_X' 'Center_Y'
                   'HalfWidth_X' 'HalfWidth_Y' 'Angle' 'Background' ] 
            the rotation angle is given in degrees.
          or 'guess'
         x: axis along rows    (double)
         y: axis along columns (double)
    signal: when values are given, a guess of the parameters is performed (double)
 output: signal: model value
 ex:     signal=quad2d([1 2 .5 .2 .3 30 .2], -2:.1:2, -3:.1:3); or plot(quad2d);

 Version: Nov. 26, 2018
 See also iData, iFunc/fits, iFunc/plot, quadline
 (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