Skip to content

Tools for easily handling objects like arrays of arrays and deeper nestings in scientific machine learning (SciML) and other applications

License

Notifications You must be signed in to change notification settings

SciML/RecursiveArrayTools.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9b152ff · Dec 22, 2023
Jan 2, 2022
Dec 18, 2023
Dec 18, 2023
Nov 30, 2023
Dec 22, 2023
Dec 21, 2023
Feb 13, 2023
Oct 30, 2016
Jan 7, 2021
Dec 18, 2023
Nov 21, 2019
Feb 13, 2023
Dec 22, 2023
Feb 13, 2023

Repository files navigation

RecursiveArrayTools.jl

Join the chat at https://julialang.zulipchat.com #sciml-bridged Global Docs

codecov Build Status build status

ColPrac: Contributor's Guide on Collaborative Practices for Community Packages SciML Code Style

RecursiveArrayTools.jl is a set of tools for dealing with recursive arrays like arrays of arrays.

Tutorials and Documentation

For information on using the package, see the stable documentation. Use the in-development documentation for the version of the documentation, which contains the unreleased features.

Example

using RecursiveArrayTools
a = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
b = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
vA = VectorOfArray(a)
vB = VectorOfArray(b)

vA .* vB # Now all standard array stuff works!

a = (rand(5), rand(5))
b = (rand(5), rand(5))
pA = ArrayPartition(a)
pB = ArrayPartition(b)

pA .* pB # Now all standard array stuff works!

About

Tools for easily handling objects like arrays of arrays and deeper nestings in scientific machine learning (SciML) and other applications

Topics

Resources

License

Code of conduct

Security policy

Citation

Stars

Watchers

Forks

Packages

No packages published

Languages