Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JuliaArrays/ArraysOfArrays.jl
Efficient storage and handling of nested arrays in Julia
https://github.com/JuliaArrays/ArraysOfArrays.jl
arrays data-structures flat-arrays julia nested-arrays
Last synced: 3 months ago
JSON representation
Efficient storage and handling of nested arrays in Julia
- Host: GitHub
- URL: https://github.com/JuliaArrays/ArraysOfArrays.jl
- Owner: JuliaArrays
- License: other
- Created: 2018-02-23T18:30:13.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T12:25:01.000Z (6 months ago)
- Last Synced: 2024-07-09T05:04:59.432Z (4 months ago)
- Topics: arrays, data-structures, flat-arrays, julia, nested-arrays
- Language: Julia
- Homepage:
- Size: 728 KB
- Stars: 44
- Watchers: 4
- Forks: 10
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-sciml - JuliaArrays/ArraysOfArrays.jl: Efficient storage and handling of nested arrays in Julia
README
# ArraysOfArrays.jl
[![Documentation for stable version](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaArrays.github.io/ArraysOfArrays.jl/stable)
[![Documentation for development version](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaArrays.github.io/ArraysOfArrays.jl/dev)
[![License](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](LICENSE.md)
[![Build Status](https://github.com/JuliaArrays/ArraysOfArrays.jl/workflows/CI/badge.svg?branch=main)](https://github.com/JuliaArrays/ArraysOfArrays.jl/actions?query=workflow%3ACI)
[![Codecov](https://codecov.io/gh/JuliaArrays/ArraysOfArrays.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaArrays/ArraysOfArrays.jl)A Julia package for efficient storage and handling of nested arrays.
ArraysOfArrays provides two different types of nested arrays: `ArrayOfSimilarArrays` and `VectorOfArrays`.
An `ArrayOfSimilarArrays` offers a duality of view between representing the same data as both a flat multi-dimensional array and as an array of equally-sized arrays. A `VectorOfArrays` represents a vector of arrays of equal dimensionality but different size. Internally, both types store their data in flat arrays that are accessible to the user `flatview()`.## Documentation
* [Documentation for stable version](https://JuliaArrays.github.io/ArraysOfArrays.jl/stable)
* [Documentation for development version](https://JuliaArrays.github.io/ArraysOfArrays.jl/dev)