Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vpuri3 authored Jul 19, 2023
1 parent c79564a commit 765df08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ Let `M`, `D`, `F` be matrix-based, diagonal-matrix-based, and function-based

```julia
N = 4
f = (u, p, t) -> u .* u
f(u, p, t) = u .* u
f(v, u, p, t) = v .= u .* u

M = MatrixOperator(rand(N, N))
D = DiagonalOperator(rand(N))
Expand Down

0 comments on commit 765df08

Please sign in to comment.