Chi2fit.Roots.solve
You're seeing just the function
solve
, go back to Chi2fit.Roots module for more information.
Specs
Returns the real roots of polynoms of order 1, 2 and 3 as a list.
Examples
Solve `2.0*x + 5.0 = 0`
iex> solve [2.0,5.0]
[-2.5]
iex> solve [2.0,-14.0,24.0]
[4.0,3.0]
iex> solve [1.0,0.0,5.0,6.0]
[-0.9999999999999999]