Click or drag to resize

FindRootsQuadratic Method

Find both complex roots of the quadratic equation c + b*x + a*x^2 = 0. Note the special coefficient order ascending by exponent (consistent with polynomials).

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static (Complex , Complex ) Quadratic(
	double c,
	double b,
	double a
)

Parameters

c  Double

[Missing <param name="c"/> documentation for "M:Altaxo.Calc.FindRoots.Quadratic(System.Double,System.Double,System.Double)"]

b  Double

[Missing <param name="b"/> documentation for "M:Altaxo.Calc.FindRoots.Quadratic(System.Double,System.Double,System.Double)"]

a  Double

[Missing <param name="a"/> documentation for "M:Altaxo.Calc.FindRoots.Quadratic(System.Double,System.Double,System.Double)"]

Return Value

ValueTupleComplex, Complex

[Missing <returns> documentation for "M:Altaxo.Calc.FindRoots.Quadratic(System.Double,System.Double,System.Double)"]

See Also