Closed rusandris closed 7 months ago
There is a bug in renyi_entropy_spectrum(P,qs) when x stationary distribution vector is not provided. -> ERROR: DimensionMismatch
renyi_entropy_spectrum(P,qs)
x
ERROR: DimensionMismatch
That is because x is still nothing at that point. FIX:
if isempty(x) x = stationary_distribution(P) end
should be the first lines of the function.
Fixed by f8c2f3f
There is a bug in
renyi_entropy_spectrum(P,qs)
whenx
stationary distribution vector is not provided. ->ERROR: DimensionMismatch
That is because
x
is still nothing at that point. FIX:should be the first lines of the function.