New Post: Control.NumberOfParallelWorkerThreads is not system wide
LimitedConcurrencyLevelTaskScheduler from Samples for Parallel Programming with the .NET Framework might be the solution here. Also this should work for Portable Class Library so the code in...
View ArticleNew Post: Control.NumberOfParallelWorkerThreads is not system wide
The naming is very misleading, Max- or even DesiredDegreeOfParallelism would describe much more closely what it is about. We do not do any active thread management at all and therefore cannot limit the...
View ArticleNew Post: Control.NumberOfParallelWorkerThreads is not system wide
I will do some experiments and send a pull when having a working version ;-)
View ArticleNew Post: Control.NumberOfParallelWorkerThreads is not system wide
Created pull https://github.com/mathnet/mathnet-numerics/pull/197 Only one question is open: Where to put the TaskScheduler property?
View ArticleNew Post: MKL provider for MacOS X (with Mono)
Would it be possible to have the MKL provider for MacOS X? I have tried using the Linux version but I get the error DllNotFoundException for the MathNet.Numerics.MKL.dll. (more specifically,...
View ArticleNew Post: MKL provider for MacOS X (with Mono)
It should be possible to get MKL working on OS X as Intel supports it. However, it does seem to be a separate release from the Linux one. We also do not have an MKL license for OS X at this point....
View ArticleNew Post: MKL provider for MacOS X (with Mono)
Thanks for the reply. I can run my code on a different machine, it would be just more convenient to have a Mac version. If I get back to it I will let you know.
View ArticleNew Post: BetaDistribution
Hi, I want to achieve the BetaDist functionality in MS SQL which is available in MS Excel sheet. In the Excel(Excel 2007) betadist function accept 5 parameter (x, alpha,beta,[A],[B]). Can you please...
View ArticleNew Post: BetaDistribution
Hi, Have you tried ExcelFunctions.BetaDist in v3.0.0-alpha8? It does only support the first 3 parameters, but the last two (A, B) merely translate x into the unit interval if they are anything other...
View ArticleNew Post: BetaDistribution
Thanks for the reply Christoph. But from where i can get the v3.0.0-alpha8? and is it possible to extend the function to support 5 parameter (Just as in MSExcel). That will be really grateful.
View ArticleReleased: Math.NET Numerics v3.0.0-alpha8 (Prerelease) (Feb 26, 2014)
Prerelease, see Release Notes for details.
View ArticleCreated Release: Math.NET Numerics v3.0.0-alpha8 (Prerelease) (Feb 26, 2014)
Prerelease, see Release Notes for details.
View ArticleNew Post: BetaDistribution
On NuGet with pre-releases enabled. But I've just uploaded the usual zip package to Codeplex as well. Yes, we should add such an overload (after all, the idea of those Excel functions is to mirror...
View ArticleNew Post: BetaDistribution
Thanks Christoph. I hope you will help me in extending the function to support 5 parameter (Just as in MSExcel). And also, Which DLL i should use and the method name please.
View ArticleSource code checked in, #b51bd337f01e7ab5cc6d05338e264da1d6756222
Throw ArgumentException instead of ArgumentOutOfRangeException where it was used without parameter arg
View ArticleNew Post: Turning off exceptions
I've just updated master such that it always returns a result, either once it reached the required accuracy (as before) or the intermediate result after 140 iterations.
View ArticleNew Post: Binomial distribution not working correctly
When I try the following:var binomial = new Binomial(0.0638, 3779); binomial.CumulativeDistribution(250);It will return Infinity But when I try it in excel with =BINOM.DIST(250, 3779; 0.0638, TRUE) I...
View ArticleNew Post: Binomial distribution not working correctly
Indeed, the current binomial CDF implementation could be better. In the meantime you can get the same result by using the special functions...
View ArticleNew Post: Binomial distribution not working correctly
Update: fixed in mainline master, so using the binomial distribution as above should work properly in the next release. Thanks, Christoph
View ArticleNew Post: Create beta distribution with 4 parameters?
Hello, I need to create a beta distribution using 4 parameters (alpha, beta, lower bound, upper bound). I don't see an overload in your beta distribution that allows me to do that. Am I missing...
View Article