Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading