We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b52aae8 commit 9590d8cCopy full SHA for 9590d8c
src/function_hashing/chebhash.jl
@@ -110,9 +110,9 @@ ChebHash API
110
========================#
111
112
# Compute the similarity between f and g in the embedded space
113
-function embedded_similarity(hashfn::ChebHash{:Chebyshev}, f, g)
114
- f_coeff = get_cheb_coefficients(hashfn.interval, f)
115
- g_coeff = get_cheb_coefficients(hashfn.interval, g)
+function embedded_similarity(hashfn::ChebHash{:Chebyshev}, f, g; kws...)
+ f_coeff = get_cheb_coefficients(hashfn.interval, f; kws...)
+ g_coeff = get_cheb_coefficients(hashfn.interval, g; kws...)
116
117
simfun = similarity(hashfn)
118
0 commit comments