QuadraticRealPolynomial
Defines functions for 2nd order polynomial functions of one variable with only real coefficients.
Source:
Methods
- 
    <static> discriminant
- 
    
    
    Provides the discriminant of the quadratic equation from the supplied coefficients. Parameters:Name Type Description aNumber The coefficient of the 2nd order monomial. bNumber The coefficient of the 1st order monomial. cNumber The coefficient of the 0th order monomial. Returns:Number The value of the discriminant.
- 
    <static> realRoots
- 
    
    
    Provides the real valued roots of the quadratic polynomial with the provided coefficients. Parameters:Name Type Description aNumber The coefficient of the 2nd order monomial. bNumber The coefficient of the 1st order monomial. cNumber The coefficient of the 0th order monomial. Returns:Array The real valued roots.
