Erik Ovegård
Erik Ovegård
You don't have to specify the base class in all partial class definitions (one is enough). Hence the error will go away if if you remove `: MvxWpfView` from the...
I did some work in the optimization project, but what is left is above my knowledge in numerical methods. Note that there is a bug in the Nelder-Mead Simplex (#501)...
I was one of the people who worked on getting the existing minimizers/solvers into MathNet Numerics. I underestimated the effort left where I took it up and while we got...
I've experienced the same problem with IEnumerable's that shouldn't be enumerated from end to end. One way of solving it would be to return a concrete type with an implementation...
I implemented/ported this. I simply forgot to test the one dimensional case. Not sure what the intended behavior is. It should either throw an Exception or find the solution. Current...
The problem is that the algorithm finds two points at exactly the same distance from the minimum at x=+-0.1. y is then equal to 1.01 for both points and the...
Have you tried implementing the fix? If so, could you make a pull request? Unfortunately I have very limited time at the moment to work on this.
I remember starting to see gains at a matrix size of 256x256 back when I worked with CUDA a couple of years ago (back at CUDA version 2). To get...
It looks like this could be achieved by doing supersampling (or something similar to supersampling). There would then be a need to add `Twice` (or some other scale factor) to...
Yes, switching is two lines of code. But after switching the {} in the logging templates isn't replaced by actual values so the logs aren't as useful. That's an oversight...