36 lines
629 B
Python
Executable File
36 lines
629 B
Python
Executable File
"""
|
|
=====================================
|
|
Fit functions (:mod:`nmreval.models`)
|
|
=====================================
|
|
|
|
.. currentmodule:: nmreval.models
|
|
|
|
.. autosummary::
|
|
:toctree: generated
|
|
:nosignatures:
|
|
:recursive:
|
|
|
|
Constant
|
|
Linear
|
|
Parabola
|
|
PowerLaw
|
|
PowerLawCross
|
|
ExpFunc
|
|
MittagLeffler
|
|
Log
|
|
Sine
|
|
|
|
"""
|
|
|
|
from .basic import *
|
|
from .relaxation import *
|
|
from .diffusion import *
|
|
from .fieldcycling import *
|
|
from .stimecho import *
|
|
from .bds import *
|
|
from .temperature import *
|
|
from .transitions import *
|
|
from .correlationfuncs import *
|
|
from .spectrum import *
|
|
from .wideline import *
|