Computes the Euclidean distance between this kernel point and the given input in the kernel space @param x the input vector to work with @return the Euclidean distance between this point and x in the kernel space
(Vec x)
| 339 | * kernel space |
| 340 | */ |
| 341 | public double dist(Vec x) |
| 342 | { |
| 343 | return dist(x, k.getQueryInfo(x)); |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * Computes the Euclidean distance between this kernel point and the given |