Milan Klöwer

Results 204 comments of Milan Klöwer

What about adding a `Distributions.isprobvec(p)` check in `entropy` to avoid these cases?

Haha, I even get this ![image](https://user-images.githubusercontent.com/25530332/174308402-847b951d-0fa5-42a7-ad7c-dc91f66d4c93.png) with ``` # Title ## Heading 1 ### Heading 2 Text ### Heading 3 Also text ``` What?? 😆

Okay now it gets spooky 👻 ![image](https://user-images.githubusercontent.com/25530332/174310871-d2f7a4e9-f9eb-442d-87d9-523e137dfd89.png) I've deleted the `### Heading 2`, written by hand another `### Heading 4` underneath and copied the working `### Heading 3` below that....

Yeah, current working around is: I take a `### HeadingX` that renders fine, copy it into the place where the non-working heading is and change `HeadingX` to `HeadingY`, how weird??

@rsignell-usgs The number of significant bits `nsb` is obtained from the number of significant bits `nsd` as `nsb = ceil(log2(10)*nsd)` whereby the `ceil` is just because rounding down can mean...

> You can see that NSD=3 keeps 11 mantissa bits for two values, 10 for three values, 9 for four values and 8 for one value. This is why it...

> For a given NSD we're only talking about a small range (up to 4) in the number of keep bits, so four patterns to substitute for instead of one...

While I don't know how many lossless algorithms work in detail, I usually think of them as "removing redudancies". If all bits `m` to `n` of every float in an...

Thanks for your input, indeed your example also works for me. In my slightly more extensive version of that code (see [output.jl](https://github.com/milankl/juls/blob/master/src/output.jl)) the variable t gets correctly written in some...

Okay, I think I found the issue. Let's extend your code so that two variables u,v with same dimensions get written to two different files, both with the same dimensions....