You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -30,16 +11,25 @@ In contrast to similar approaches in [Images.jl](https://github.com/timholy/Imag
30
11
31
12
Collaboration is welcome! This is still a work-in-progress. See [the roadmap](https://github.com/JuliaArrays/AxisArrays.jl/issues/7) for the project's current direction.
32
13
14
+
## Installation
15
+
From the Julia REPL, type
16
+
```julia-repl
17
+
julia> import Pkg; Pkg.add("AxisArrays")
18
+
```
19
+
33
20
## Example of currently-implemented behavior:
34
21
35
-
```julia-repl
36
-
julia> Pkg.add("AxisArrays")
22
+
```jldoctest index
37
23
julia> using AxisArrays, Unitful, Random
24
+
38
25
julia> import Unitful: s, ms, µs
39
26
40
-
julia> rng = MersenneTwister(123) # Seed a random number generator for repeatable examples
41
-
julia> fs = 40000 # Generate a 40kHz noisy signal, with spike-like stuff added for testing
42
-
julia> y = randn(rng, 60*fs+1)*3
27
+
julia> rng = MersenneTwister(123); # Seed a random number generator for repeatable examples
28
+
29
+
julia> fs = 40000; # Generate a 40kHz noisy signal, with spike-like stuff added for testing
0 commit comments