Skip to content

Commit d61c919

Browse files
st--devmotion
andauthored
Apply suggestions from code review
Co-authored-by: David Widmann <[email protected]>
1 parent 6d57297 commit d61c919

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/kernels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ where $i\in\{-1,0,1,2,3\}$ and coefficients $a_i$, $b_i$ are fixed and residuals
234234
The [`TransformedKernel`](@ref) is a kernel where inputs are transformed via a function `f`:
235235

236236
```math
237-
k(x,x';f,\widetile{k}) = \widetilde{k}(f(x),f(x')),
237+
k(x,x';f,\widetilde{k}) = \widetilde{k}(f(x),f(x')),
238238
```
239239
where $\widetilde{k}$ is another kernel and $f$ is an arbitrary mapping.
240240

docs/src/transform.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
There is a more general `Transform`: `FunctionTransform` that uses a function and applies it on each vector via `mapslices`.
55
You can also create a pipeline of `Transform` via `TransformChain`. For example, `LowRankTransform(rand(10,5))∘ScaleTransform(2.0)`.
66

7-
A transformation can be applied to a matrix or a vector via `KernelFunctions.apply(t::Transform, v::AbstractVecOrMat)`
7+
A transformation `t` can be applied to a matrix or a vector `v` via `KernelFunctions.apply(t, v)`.
88

9-
Check the list on the [API page](@ref Transforms)
9+
Check the list on the [API page](@ref Transforms).

0 commit comments

Comments
 (0)