jmh530

Results 42 comments of jmh530

I don't really have a good sense of how to use `mir.ion`. I see that it references a cookbook, but it would be good to have a simple example written...

> ```d > auto matrix = deserializeCsv!(Slice!(2, double*)); > ``` Am I correct that the `deserializeCsv` would handle the transformation of what is read from a `.csv` file into the...

I don't know if this applies or not, but one thing that is very useful in R's `read.csv` [1] function is the ability to identify certain strings as representing NAs....

I would want to do something like this: ```d auto text = "1,2\n3,4\n5,#N/A\n"; auto matrix = //TODO matrix.should == [[1.0, 2], [3.0, 4], [5.0, double.nan]]; ``` I saw something with...

I used `add_fw allow ip from [defaultgatewayip] to [jailip/jailnetmask] 8080 keep-state`.

Actually the above doesn't work with `[defaultgatewayip]`. It works with `any`.

Not sure if that is safe, I'm not really familiar with `ipfw`.

Is there any reason why this has not been merged? I just ran into the issue this PR is supposed to resolve today.

@astamm I'm not the original author, it has been some time that I have looked at the issue, and I tend to use other algorithms more frequently than `auglag`, but...

@ibuclaw The documentation for `log1p` says "For very small x, log1p(x) will be more accurate than log(1 + x).". It looks to me that when calling `log1p` with `double`s or...