http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
finds real roots of a cubic equation:
coeffs[0]*x^3 + coeffs[1]*x^2 + coeffs[2]*x + coeffs[3] = 0
(if coeffs is 4-element vector)
or
x^3 + coeffs[0]*x^2 + coeffs[1]*x + coeffs[2] = 0
(if coeffs is 3-element vector)
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static int cvSolveCubic( IntPtr coeffs, IntPtr roots ) |
Visual Basic |
---|
Public Shared Function cvSolveCubic ( _ coeffs As IntPtr, _ roots As IntPtr _ ) As Integer |
Visual C++ |
---|
public: static int cvSolveCubic( IntPtr coeffs, IntPtr roots ) |
Parameters
- coeffs
- Type: System..::..IntPtr
The equation coefficients, array of 3 or 4 elements
- roots
- Type: System..::..IntPtr
The output array of real roots. Should have 3 elements. Padded with zeros if there is only one root