Skip to content

Commit

Permalink
fix dev doc error (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
apkille authored Oct 20, 2024
1 parent d3e5107 commit eeea5ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,17 +116,17 @@ julia> E = ApplyArray(exp, [1 2; 3 4])
51.969 74.7366
112.105 164.074
```

A lazy matrix exponential is useful for, say, in-place matrix-exponential*vector:
```julia
julia> b = Vector{Float64}(undef, 2); b .= @~ E*[4,4]
2-element Array{Float64,1}:
506.8220830628333
1104.7145995988594
```
While this works, it is not actually optimised (yet).
While this works, it is not actually optimised (yet).

Other options do have special implementations that make them fast. We
now give some examples.
Other options do have special implementations that make them fast. We now give some examples.


### Concatenation
Expand Down

0 comments on commit eeea5ff

Please sign in to comment.