Expand description
Modules§
- Histogram module.
- A module containing Indexing utilities for 2D and 3D grids with static dimensions The main purpose of this module is to provide a way to index into a 1D array as if it were a 2D or 3D array And not using x, y, z coordinates, but a single index that is transformed. This is useful for implementing cellular automata and other grid-based algorithms The main advantage of this approach is that it is faster than using a 2D or 3D array And it is more flexible than using a 1D array and manually calculating the index
- Markov chain-like module
- Contains the
MonteCarlostruct and its implementation. TheMonteCarlostruct is a wrapper aroundrand::Rngandrand::distributions::Distribution<f64>. It is used to generate random data and iterate over it. - This module contains the most commonly used types and traits in the library.
Structs§
- A 2D vector.
- A 3D vector.
- A 4D vector.
Traits§
- Its like
Defaultbut it generates a random value on a given distribution.