add documents
This commit is contained in:
parent
71cb724b88
commit
fe633b74ca
@ -475,6 +475,9 @@ lmfit_models = {'Constant': ConstantModel,
|
|||||||
'Expansion':ExpansionModel,
|
'Expansion':ExpansionModel,
|
||||||
'Damping Oscillation Model':DampingOscillationModel,
|
'Damping Oscillation Model':DampingOscillationModel,
|
||||||
'Two Gaussian-2D':TwoGaussian2dModel,
|
'Two Gaussian-2D':TwoGaussian2dModel,
|
||||||
|
'Thomas Fermi-2D': ThomasFermi2dModel,
|
||||||
|
'Density Profile of BEC-2D': DensityProfileBEC2dModel,
|
||||||
|
'Polylog2-2D': polylog2_2d,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
2928
Example/CalculateAbsorptionImaging.ipynb
Normal file
2928
Example/CalculateAbsorptionImaging.ipynb
Normal file
File diff suppressed because one or more lines are too long
4986
Example/FitData.ipynb
Normal file
4986
Example/FitData.ipynb
Normal file
File diff suppressed because one or more lines are too long
2627
Example/IndexSliceData.ipynb
Normal file
2627
Example/IndexSliceData.ipynb
Normal file
File diff suppressed because one or more lines are too long
5389
Example/ReadHDF5.ipynb
Normal file
5389
Example/ReadHDF5.ipynb
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
10
docs/HowTo.rst
Normal file
10
docs/HowTo.rst
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
How to
|
||||||
|
=========================================
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
HowToReadHDF5
|
||||||
|
HowToCalculateAbsorptionImaging
|
||||||
|
HowToSelectData
|
||||||
|
HowToFit
|
3
docs/HowToCalculateAbsorptionImaging.nblink
Normal file
3
docs/HowToCalculateAbsorptionImaging.nblink
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"path": "../Example/CalculateAbsorptionImaging.ipynb"
|
||||||
|
}
|
3
docs/HowToFit.nblink
Normal file
3
docs/HowToFit.nblink
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"path": "../Example/FitData.ipynb"
|
||||||
|
}
|
3
docs/HowToReadHDF5.nblink
Normal file
3
docs/HowToReadHDF5.nblink
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"path": "../Example/ReadHDF5.ipynb"
|
||||||
|
}
|
3
docs/HowToSelectData.nblink
Normal file
3
docs/HowToSelectData.nblink
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"path": "../Example/IndexSliceData.ipynb"
|
||||||
|
}
|
2927
docs/_build/doctrees/nbsphinx/HowToCalculateAbsorptionImaging.ipynb
vendored
Normal file
2927
docs/_build/doctrees/nbsphinx/HowToCalculateAbsorptionImaging.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
4985
docs/_build/doctrees/nbsphinx/HowToFit.ipynb
vendored
Normal file
4985
docs/_build/doctrees/nbsphinx/HowToFit.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
5388
docs/_build/doctrees/nbsphinx/HowToReadHDF5.ipynb
vendored
Normal file
5388
docs/_build/doctrees/nbsphinx/HowToReadHDF5.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
2626
docs/_build/doctrees/nbsphinx/HowToSelectData.ipynb
vendored
Normal file
2626
docs/_build/doctrees/nbsphinx/HowToSelectData.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
1340
docs/_build/doctrees/nbsphinx/test.ipynb
vendored
Normal file
1340
docs/_build/doctrees/nbsphinx/test.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
2927
docs/_build/html/HowToCalculateAbsorptionImaging.ipynb
vendored
Normal file
2927
docs/_build/html/HowToCalculateAbsorptionImaging.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
4985
docs/_build/html/HowToFit.ipynb
vendored
Normal file
4985
docs/_build/html/HowToFit.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
5388
docs/_build/html/HowToReadHDF5.ipynb
vendored
Normal file
5388
docs/_build/html/HowToReadHDF5.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
2626
docs/_build/html/HowToSelectData.ipynb
vendored
Normal file
2626
docs/_build/html/HowToSelectData.ipynb
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -7,6 +7,7 @@
|
|||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
sys.path.insert(0, os.path.abspath('..'))
|
sys.path.insert(0, os.path.abspath('..'))
|
||||||
|
sys.path.insert(0, os.path.abspath('../Example'))
|
||||||
|
|
||||||
# -- Project information -----------------------------------------------------
|
# -- Project information -----------------------------------------------------
|
||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
||||||
@ -20,7 +21,7 @@ release = '0.5'
|
|||||||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||||||
|
|
||||||
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.napoleon',
|
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.napoleon',
|
||||||
'nbsphinx']
|
'nbsphinx', 'nbsphinx_link']
|
||||||
|
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||||
|
@ -9,6 +9,7 @@ Welcome to DyLab Data Cruncher's documentation!
|
|||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
|
HowTo.rst
|
||||||
API.rst
|
API.rst
|
||||||
|
|
||||||
Indices and tables
|
Indices and tables
|
||||||
|
Loading…
Reference in New Issue
Block a user