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
4 changes: 2 additions & 2 deletions docs/src/tutorials/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ isconstant(opB)

Now let's define the operators from above in a matrix-free way using `FunctionOperator`.
With `FunctionOperator`, we directly define the operator application function `opA(w,v,u,p,t)`
which means `w = opA(u,p,t)*v`. For exmaple we can do the following:
which means `w = opA(u,p,t)*v`. For example we can do the following:

```@example getting_started
function Afunc!(w,v,u,p,t)
Expand Down Expand Up @@ -234,4 +234,4 @@ doing algebras on operators. What's next?
How do you use SciMLOperators? Check out the following downstream pages:

* [Using SciMLOperators in LinearSolve.jl for matrix-free Krylov methods](https://docs.sciml.ai/LinearSolve/stable/tutorials/linear/)
* [Using SciMLOperators in OrdinaryDiffEq.jl for semi-linear ODE solvers](https://docs.sciml.ai/DiffEqDocs/stable/solvers/nonautonomous_linear_ode/)
* [Using SciMLOperators in OrdinaryDiffEq.jl for semi-linear ODE solvers](https://docs.sciml.ai/DiffEqDocs/stable/solvers/nonautonomous_linear_ode/)
Loading