File: readme.rst

package info (click to toggle)
python-bumps 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 6,180 kB
  • sloc: python: 24,284; xml: 493; ansic: 373; makefile: 209; sh: 94; javascript: 88
file content (26 lines) | stat: -rw-r--r-- 790 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
.. _curvefit-example:

****************
Simple functions
****************

.. contents:: :local:

Bumps allows fits with varying levels of complexity.  Simple fits accept
a function $f(x;p)$ and data $x,y,\sigma_y$, where vector $y$ is the value
measured in conditions $x$, and $\sigma_y$ is the $1-\sigma$ uncertainty in
the measurement.  Bumps also provides a simple wrapper for poisson data
taken from counting statistics, with function $f(x;p)$ and data $x,y$.
sim.py is a simulation of data from a poisson process, showing maximum
likelihood, expected value and variance.

The ode2 example shows how to fit a system of coupled differential equations
where multiple values are tracked at each time step.

.. toctree::

    curve.rst
    poisson.rst
    sim.rst
    ode.rst
    ode2.rst