Skip to content
Snippets Groups Projects
Select Git revision
  • 9d35071829fd87d06c2832fe3c39798b3d6f99e6
  • main default protected
2 results

SparseTensorMoments.jl

  • Clone with SSH
  • Clone with HTTPS
  • Lambert Theisen's avatar
    Lambert Theisen authored
    9d350718
    History

    SparseTensorMoments.jl

    pipeline status coverage report documentation

    Package to generate numerical moments

    YY
    from a tensor
    XX
    representing a low-rank distribution function
    ff
    using linear numerical quadrature map
    AA
    .

    Installation and Execution

    1. Clone the repository and open the folder
    git git@git-ce.rwth-aachen.de:lamBOO/SparseTensorMoments.jl.git
    cd SparseTensorMoments.jl
    1. Install all Julia dependencies
    julia --project -e 'import Pkg; Pkg.instantiate()'
    1. Run examples by navigating to the folder and execute the examples from the shell:
    cd examples/1
    julia --project generate.jl
    
    ## Reading files
    
    ```julia
    io = open(joinpath(foldername, "A.ser"), "r")  # e.g.
    A = deserialize(io)
    close(io)