Skip to content

Commit

Permalink
fix typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLampert committed Nov 8, 2023
1 parent ed88c20 commit 9b5d689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In the Julia REPL, first load the package KernelInterpolation.jl
```julia
julia> using KernelInterpolation
```
In order to interpolate discrete function values of a (potentially) multivariate function $f: \mathbb{R}^d\to \mathbb{R}$, we first need a set of nodes $X = \{x_1,\ldots,x_n\}\subset\mathbb{R}^d$, where the function values of $f$ are known. In KernelInterpolation.jl we can, e.g., construct a homogeneous grid on a hypercube in 2 dimensions by calling
In order to interpolate discrete function values of a (potentially) multivariate function $f: \mathbb{R}^d\to \mathbb{R}$, we first need a set of nodes $X = `\{x_1,\ldots,x_n`\}\subset\mathbb{R}^d$, where the function values of $f$ are known. In KernelInterpolation.jl we can, e.g., construct a homogeneous grid on a hypercube in 2 dimensions by calling
```julia
julia> nodeset = homogeneous_hypercube(5, 2, (-2, -1), (2, 1))
```
Expand Down

0 comments on commit 9b5d689

Please sign in to comment.