-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
119 changed files
with
8,429 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 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 not shown.
Binary file not shown.
9 changes: 9 additions & 0 deletions
9
docs_html/_downloads/0120b171ab86899dce745bed5385fb30/dyson_equalizer-plots-1.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Binary file added
BIN
+137 KB
...ownloads/037b99d450fa064d99062275db9ab16e/dyson_equalizer-algorithm-1.hires.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
BIN
+24.9 KB
docs_html/_downloads/040d40c8f1a75c7ba616f303c6741e0d/dyson_equalizer-1.pdf
Binary file not shown.
Binary file added
BIN
+17.6 KB
docs_html/_downloads/051a2146ef896cae0fa940692fdb0fa4/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
BIN
+13.9 KB
docs_html/_downloads/179faf11df58dc8dbf2a9aa00791e8c4/dyson_equalizer-plots-1.pdf
Binary file not shown.
Binary file added
BIN
+13.9 KB
docs_html/_downloads/1d1027295f67536b84f29d02893b6b52/dyson_equalizer-2.pdf
Binary file not shown.
Binary file added
BIN
+24.9 KB
docs_html/_downloads/3f43ce4f187c080c6a43421015fe260c/dyson_equalizer-algorithm-1.pdf
Binary file not shown.
Binary file added
BIN
+137 KB
docs_html/_downloads/4029224c27cba68d5ec97a0f583a4484/dyson_equalizer-1.hires.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions
9
docs_html/_downloads/5d36910c87e55f3fc827dd430d294b41/dyson_equalizer-2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
9 changes: 9 additions & 0 deletions
9
docs_html/_downloads/6b4c98d2bf7202d07025d20ff610f974/dyson_equalizer-plots-2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Binary file added
BIN
+17.6 KB
docs_html/_downloads/9abbacb94696994e6c973245be264d75/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
BIN
+59.2 KB
docs_html/_downloads/9c544282a85f7168a992f66b7fe1349c/dyson_equalizer-2.hires.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
BIN
+59.2 KB
...l/_downloads/9d4b65ccaf42ddf84ea0b799f82a9288/dyson_equalizer-plots-1.hires.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions
8
docs_html/_downloads/a5c69e67e76ef2f144bc89a6dd7a27b9/dyson_equalizer-algorithm-1.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 added
BIN
+15 KB
docs_html/_downloads/b0cb300918942c1c35d4a9bdb358a081/dyson_equalizer-3.pdf
Binary file not shown.
8 changes: 8 additions & 0 deletions
8
docs_html/_downloads/b3aefda1e46a50b979105e1ff5d0559b/dyson_equalizer-1.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Binary file added
BIN
+28.8 KB
...l/_downloads/b614bca704fb8d38b7959e0a85083a69/dyson_equalizer-plots-2.hires.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
BIN
+28.8 KB
docs_html/_downloads/bb3eea6d7317d0b80d23f9ed5cc105e5/dyson_equalizer-3.hires.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
BIN
+8.41 KB
docs_html/_downloads/c0b6699c0991f006206d9c543e20007e/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.
9 changes: 9 additions & 0 deletions
9
docs_html/_downloads/c3e42fed7c5fb3188b259cfa49cacb47/dyson_equalizer-3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Binary file added
BIN
+37.5 KB
...tml/_downloads/d0a95b0846a7db66bce8cb701c5004fc/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
BIN
+15 KB
docs_html/_downloads/dc48c60a41224f72a0a8e45aacfa0d82/dyson_equalizer-plots-2.pdf
Binary file not shown.
Binary file added
BIN
+8.41 KB
docs_html/_downloads/de2b3b689926f94b1984cbf67ebe272f/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.
Binary file added
BIN
+37.5 KB
docs_html/_downloads/f6c7f1a817d48fbac50a0176409a16b8/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.
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.
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` | ||
|
||
|
7 changes: 7 additions & 0 deletions
7
docs_html/_sources/reference/dyson_equalizer.algorithm.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
7 changes: 7 additions & 0 deletions
7
docs_html/_sources/reference/dyson_equalizer.dyson_equalizer.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
7
docs_html/_sources/reference/dyson_equalizer.examples.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
7 changes: 7 additions & 0 deletions
7
docs_html/_sources/reference/dyson_equalizer.validation.rst.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
dyson_equalizer | ||
=============== | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
dyson_equalizer |
Oops, something went wrong.