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.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function cvSolveCubic ( _
coeffs As IntPtr, _
roots As IntPtr _
) As Integer |
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
Return Value
the number of real roots found
See Also