diff --git a/docs/make.jl b/docs/make.jl index f6bc3f0..5130a6b 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -1,5 +1,13 @@ using Documenter, RandomMatrix +const PAGES = any["Home" =>"index.md", + "Random Matrix Models" =>[ + "IID Matrices.md"=>"IID Matrices.md", + "Others" =>"Others.md" + ] + +] + makedocs(modules = [RandomMatrix], sitename="RandomMatrix.jl") diff --git a/docs/src/IID Matrices.md b/docs/src/IID Matrices.md new file mode 100644 index 0000000..9c03290 --- /dev/null +++ b/docs/src/IID Matrices.md @@ -0,0 +1,3 @@ +```@docs +randMatrix +``` \ No newline at end of file diff --git a/docs/src/Others.md b/docs/src/Others.md new file mode 100644 index 0000000..3b85b5c --- /dev/null +++ b/docs/src/Others.md @@ -0,0 +1,27 @@ +```@docs +randMatrix + +randHermitian + +randSymmetric + +randUnitary + +randOrthogonal + +Haar + +randPermutation + +randEllipic + +resolvent + +ComplexNormal + +Gaussian + +MarchenkoPastur + +± +``` \ No newline at end of file diff --git a/docs/src/index.md b/docs/src/index.md index 653f62e..f7c9645 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -1,29 +1,6 @@ # RandomMatrix.jl Documentation -```@docs -randMatrix +A package for Random Matrix Theory. -randHermitian +Hoping to add-in enough functionalities and register in Aug 2021. If there is any functionality you want me to implement, please raise an issue. -randSymmetric - -randUnitary - -randOrthogonal - -Haar - -randPermutation - -randEllipic - -resolvent - -ComplexNormal - -Gaussian - -MarchenkoPastur - -± -``` \ No newline at end of file