You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/basekernels/matern.jl
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ The matern kernel is a Mercer kernel given by the formula:
7
7
```
8
8
For `ν=n+1/2, n=0,1,2,...` it can be simplified and you should instead use [`ExponentialKernel`](@ref) for `n=0`, [`Matern32Kernel`](@ref), for `n=1`, [`Matern52Kernel`](@ref) for `n=2` and [`SqExponentialKernel`](@ref) for `n=∞`.
9
9
"""
10
-
struct MaternKernel{Tν<:Real} <:BaseKernel
10
+
struct MaternKernel{Tν<:Real} <:SimpleKernel
11
11
ν::Vector{Tν}
12
12
functionMaternKernel(;nu::T=1.5, ν::T=nu) where {T<:Real}
13
13
@check_args(MaternKernel, ν, ν >zero(T), "ν > 0")
@@ -37,7 +37,7 @@ The matern 3/2 kernel is a Mercer kernel given by the formula:
0 commit comments