We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3e5107 commit eeea5ffCopy full SHA for eeea5ff
README.md
@@ -116,17 +116,17 @@ julia> E = ApplyArray(exp, [1 2; 3 4])
116
51.969 74.7366
117
112.105 164.074
118
```
119
+
120
A lazy matrix exponential is useful for, say, in-place matrix-exponential*vector:
121
```julia
122
julia> b = Vector{Float64}(undef, 2); b .= @~ E*[4,4]
123
2-element Array{Float64,1}:
124
506.8220830628333
125
1104.7145995988594
126
- While this works, it is not actually optimised (yet).
127
+While this works, it is not actually optimised (yet).
128
- Other options do have special implementations that make them fast. We
129
- now give some examples.
+Other options do have special implementations that make them fast. We now give some examples.
130
131
132
### Concatenation
0 commit comments