Click or drag to resize
CvInvokeSolvePoly Method
http://www.emgu.com
Finds all real and complex roots of any degree polynomial with real coefficients

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static double SolvePoly(
	IInputArray coeffs,
	IOutputArray roots,
	int maxiter = 300
)

Parameters

coeffs
Type: Emgu.CVIInputArray
The (degree + 1)-length array of equation coefficients (CV_32FC1 or CV_64FC1)
roots
Type: Emgu.CVIOutputArray
The degree-length output array of real or complex roots (CV_32FC2 or CV_64FC2)
maxiter (Optional)
Type: SystemInt32
The maximum number of iterations

Return Value

Type: Double

[Missing <returns> documentation for "M:Emgu.CV.CvInvoke.SolvePoly(Emgu.CV.IInputArray,Emgu.CV.IOutputArray,System.Int32)"]

See Also