Computes the dot product between the k'th KernelPoint and the given vector in the kernel space. @param k the index of the KernelPoint in this set to contribute to the dot product @param x the vector to contribute to the dot product @param qi the query information for the vector, or {@code nu
(int k, Vec x, List<Double> qi)
| 193 | * given vector |
| 194 | */ |
| 195 | public double dot(int k, Vec x, List<Double> qi) |
| 196 | { |
| 197 | return points.get(k).dot(x, qi); |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Computes the dot product between each KernelPoint in this set and the |