Skip to content

Commit daf70a9

Browse files
committed
remove reference to not-yet-implemented feature
1 parent 0ec313e commit daf70a9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

docs/src/userguide.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,13 @@ For example, to premultiply the input by 2.0 (equivalent to a lengthscale of 0.5
1212
```julia
1313
k = transform(SqExponentialKernel(), ScaleTransform(2.0)) # returns a TransformedKernel
1414
k = TransformedKernel(SqExponentialKernel(), ScaleTransform(2.0))
15-
k = @kernel SqExponentialKernel() l=2.0 # Will be available soon
1615
```
1716
Check the [`Transform`](@ref) page to see all available transforms.
1817

1918
To premultiply the kernel by a variance, you can use `*` or create a `ScaledKernel`:
2019
```julia
2120
k = 3.0*SqExponentialKernel()
2221
k = ScaledKernel(SqExponentialKernel(), 3.0)
23-
@kernel 3.0*SqExponentialKernel()
2422
```
2523

2624
## Using a kernel function

0 commit comments

Comments
 (0)