|
1 | 1 | # LabelledArrays.jl
|
2 | 2 |
|
3 | 3 | [](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged)
|
4 |
| -[](http://labelledarrays.sciml.ai/stable/) |
5 |
| -[](https://docs.sciml.ai/dev/modules/LabelledArrays/) |
| 4 | +[](https://docs.sciml.ai/LabelledArrays/stable/) |
6 | 5 |
|
7 | 6 | [](https://codecov.io/gh/SciML/LabelledArrays.jl)
|
8 | 7 | [](https://github.com/SciML/LabelledArrays.jl/actions?query=workflow%3ACI)
|
9 | 8 |
|
10 | 9 | [](https://github.com/SciML/ColPrac)
|
11 | 10 | [](https://github.com/SciML/SciMLStyle)
|
12 | 11 |
|
| 12 | +# About |
| 13 | + |
13 | 14 | LabelledArrays.jl is a package which provides arrays with labels, i.e. they are
|
14 | 15 | arrays which `map`, `broadcast`, and all of that good stuff, but their components
|
15 | 16 | are labelled. Thus for instance you can set that the second component is named
|
16 | 17 | `:second` and retrieve it with `A.second`.
|
17 | 18 |
|
| 19 | +## How to install |
| 20 | + |
| 21 | +The package can be installed from this repository by |
| 22 | +```julia |
| 23 | +> using Pkg |
| 24 | +> Pkg.add("LabelledArrays") |
| 25 | +``` |
| 26 | +## Tutorials and Documentation |
| 27 | + |
| 28 | +For information on using the package, |
| 29 | +[see the stable documentation](https://docs.sciml.ai/LabelledArrays/stable/). Use the |
| 30 | +[in-development documentation](https://docs.sciml.ai/LabelledArrays/dev/) for the version of |
| 31 | +the documentation, which contains the unreleased features. |
| 32 | + |
18 | 33 | ## SLArrays
|
19 | 34 |
|
20 | 35 | The `SLArray` and `SLVector` macros are for creating static LabelledArrays.
|
@@ -268,4 +283,4 @@ unlike a named tuple, is mutable.
|
268 | 283 |
|
269 | 284 | This functionality has been removed from LabelledArrays.jl, but can
|
270 | 285 | replicated with the same compile-time performance and indexing syntax
|
271 |
| -using [DimensionalData.jl](https://github.com/rafaqz/DimensionalData.jl). |
| 286 | +using [DimensionalData.jl](https://rafaqz.github.io/DimensionalData.jl/stable/). |
0 commit comments