SparseTensorMoments.jl
Package to generate numerical moments
from a tensor
representing a low-rank distribution function
using linear numerical quadrature map
.
Installation and Execution
- Clone the repository and open the folder
git git@git-ce.rwth-aachen.de:lamBOO/SparseTensorMoments.jl.git
cd SparseTensorMoments.jl
- Install all Julia dependencies
julia --project -e 'import Pkg; Pkg.instantiate()'
- 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)