Skip to content

Commit

Permalink
built documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fra-pcmgf committed Aug 6, 2024
1 parent f57bb0e commit 59221b8
Show file tree
Hide file tree
Showing 119 changed files with 8,429 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs_html/.buildinfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 898cedd8288133a4fd8b696205f292c6
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file added docs_html/.doctrees/environment.pickle
Binary file not shown.
Binary file added docs_html/.doctrees/index.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs_html/.doctrees/reference/modules.doctree
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import numpy as np
from dyson_equalizer.plots import plot_mp_density

m, n = 100, 1000
X = np.random.normal(size=(m, n))
Y = X @ X.T / n
eigs = sorted(np.linalg.eigvals(Y), reverse=True)

plot_mp_density(eigs, gamma=m/n)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import numpy as np
from dyson_equalizer.plots import plot_mp_density

m, n = 100, 1000
X = np.random.normal(size=(m, n))
Y = X @ X.T / n
eigs = sorted(np.linalg.eigvals(Y), reverse=True)

plot_mp_density(eigs, gamma=m/n)
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import numpy as np
from dyson_equalizer.plots import plot_mp_eigenvalues

m, n = 100, 1000
X = np.random.normal(size=(m, n))
Y = X @ X.T / n
eigs = sorted(np.linalg.eigvals(Y), reverse=True)

plot_mp_eigenvalues(eigs, gamma=m/n)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import matplotlib.pyplot as plt
import numpy as np
from dyson_equalizer.dyson_equalizer import DysonEqualizer
from dyson_equalizer.examples import generate_Y_with_correlated_noise

X = generate_Y_with_correlated_noise()
de = DysonEqualizer(X).compute()
de.plot_mp_eigenvalues_and_densities(show_only_significant=1)
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import matplotlib.pyplot as plt
import numpy as np
from dyson_equalizer.dyson_equalizer import DysonEqualizer
from dyson_equalizer.examples import generate_Y_with_correlated_noise

Y = generate_Y_with_correlated_noise()
de = DysonEqualizer(Y).compute()
de.plot_mp_eigenvalues_and_densities(show_only_significant=1)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import numpy as np
from dyson_equalizer.plots import plot_mp_eigenvalues

m, n = 100, 1000
X = np.random.normal(size=(m, n))
Y = X @ X.T / n
eigs = sorted(np.linalg.eigvals(Y), reverse=True)

plot_mp_eigenvalues(eigs, gamma=m/n)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs_html/_images/dyson_equalizer-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs_html/_images/dyson_equalizer-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs_html/_images/dyson_equalizer-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs_html/_images/dyson_equalizer-algorithm-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs_html/_images/dyson_equalizer-plots-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs_html/_images/dyson_equalizer-plots-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions docs_html/_sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.. include:: ../../README.md
:parser: myst_parser.sphinx_


Contents
--------


.. toctree::
:hidden:
:maxdepth: 2

self
reference/dyson_equalizer


* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`


Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dyson\_equalizer.algorithm module
=================================

.. automodule:: dyson_equalizer.algorithm
:members:
:undoc-members:
:show-inheritance:
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dyson\_equalizer.dyson\_equalizer module
========================================

.. automodule:: dyson_equalizer.dyson_equalizer
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs_html/_sources/reference/dyson_equalizer.examples.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dyson\_equalizer.examples module
================================

.. automodule:: dyson_equalizer.examples
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs_html/_sources/reference/dyson_equalizer.plots.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dyson\_equalizer.plots module
=============================

.. automodule:: dyson_equalizer.plots
:members:
:undoc-members:
:show-inheritance:
19 changes: 19 additions & 0 deletions docs_html/_sources/reference/dyson_equalizer.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
dyson\_equalizer package
========================

.. automodule:: dyson_equalizer
:members:
:undoc-members:
:show-inheritance:

Submodules
----------

.. toctree::
:maxdepth: 4

dyson_equalizer.algorithm
dyson_equalizer.dyson_equalizer
dyson_equalizer.examples
dyson_equalizer.plots
dyson_equalizer.validation
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dyson\_equalizer.validation module
==================================

.. automodule:: dyson_equalizer.validation
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs_html/_sources/reference/modules.rst.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dyson_equalizer
===============

.. toctree::
:maxdepth: 4

dyson_equalizer
Loading

0 comments on commit 59221b8

Please sign in to comment.