0

very similar to the question posted here: Determine Weibull parameters from data

I have a bunch of data, and I want to extract the Weibull parameters from it using a library in C#. (As opposed to the linked question which uses python)

Ian
  • 151
  • 1
  • 3
  • 9
  • It is a math function and you just need to convert to c#. See Wiki : https://en.wikipedia.org/wiki/Exponentiated_Weibull_distribution – jdweng Dec 01 '20 at 11:20
  • Yes, I understand the maths, but I want to know if there is a library where I can give it an array of data, and it calculates the parameters – Ian Dec 01 '20 at 12:27
  • Why do you need a library when you can write the code yourself in 10 minutes? – jdweng Dec 01 '20 at 12:29
  • because one of the parameters is not solved analytically, but numerically, but that's also not that big of a deal, since a library exists in python, I thought that it could have in C# also. – Ian Dec 01 '20 at 12:45

1 Answers1

0

You can use MathNet

using MathNet.Numerics.Distributions;
Vivi
  • 4,070
  • 6
  • 29
  • 44