From 1ca1c06a30db4f2a68226930c32f45b22dce5267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Designolle?= Date: Thu, 27 Jun 2024 22:43:18 +0200 Subject: [PATCH] typo --- src/entropy.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entropy.jl b/src/entropy.jl index 75eaa0a..b7c7f54 100755 --- a/src/entropy.jl +++ b/src/entropy.jl @@ -40,7 +40,7 @@ Computes the relative entropy D(`p`||`q`) = Σᵢpᵢlog(pᵢ/qᵢ) between two Reference: [Relative entropy](https://en.wikipedia.org/wiki/Relative_entropy). """ -function relative_entropy(base::Real, p::AbstractVector{T}, q::AbstractVector{S}) where {T