Merge remote-tracking branch 'origin/master' into joschka_dev

This commit is contained in:
Joschka 2023-07-26 09:52:41 +02:00
commit 1b72580476
26 changed files with 50189 additions and 61 deletions

View File

@ -475,6 +475,9 @@ lmfit_models = {'Constant': ConstantModel,
'Expansion':ExpansionModel,
'Damping Oscillation Model':DampingOscillationModel,
'Two Gaussian-2D':TwoGaussian2dModel,
'Thomas Fermi-2D': ThomasFermi2dModel,
'Density Profile of BEC-2D': DensityProfileBEC2dModel,
'Polylog2-2D': polylog2_2d,
}

File diff suppressed because one or more lines are too long

4986
Example/FitData.ipynb Normal file

File diff suppressed because one or more lines are too long

2627
Example/IndexSliceData.ipynb Normal file

File diff suppressed because one or more lines are too long

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

BIN
backupScript/figS1_v4.pdf Normal file

Binary file not shown.

BIN
backupScript/figS1_v5.pdf Normal file

Binary file not shown.

10
docs/HowTo.rst Normal file
View File

@ -0,0 +1,10 @@
How to
=========================================
.. toctree::
:maxdepth: 2
HowToReadHDF5
HowToCalculateAbsorptionImaging
HowToSelectData
HowToFit

View File

@ -0,0 +1,3 @@
{
"path": "../Example/CalculateAbsorptionImaging.ipynb"
}

3
docs/HowToFit.nblink Normal file
View File

@ -0,0 +1,3 @@
{
"path": "../Example/FitData.ipynb"
}

View File

@ -0,0 +1,3 @@
{
"path": "../Example/ReadHDF5.ipynb"
}

View File

@ -0,0 +1,3 @@
{
"path": "../Example/IndexSliceData.ipynb"
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1340
docs/_build/doctrees/nbsphinx/test.ipynb vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

2626
docs/_build/html/HowToSelectData.ipynb vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -7,6 +7,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath('../Example'))
# -- 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
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.napoleon',
'nbsphinx']
'nbsphinx', 'nbsphinx_link']
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

View File

@ -9,6 +9,7 @@ Welcome to DyLab Data Cruncher's documentation!
.. toctree::
:maxdepth: 2
HowTo.rst
API.rst
Indices and tables

File diff suppressed because one or more lines are too long