Table of Contents

mSolveQuartic

(float a, float b, float c, float d, float e)Solve a quartic equation of form a*x^4 + b*x^3 + c*x^2 + d*x + e = 0.

@returns A 5-tuple, contanining: sol x0 x1 x2 x3. sol is the number of solutions (ranging from 0-4), and x0, x1, x2 and x3 are the solutions, if any. Unused x's are undefined.

Syntax

string mSolveQuartic(float %a, float %b, float %c, float %d, float %e);

Parameters

float %a
No description available.

float %b
No description available.

float %c
No description available.

float %d
No description available.

float %e
No description available.

Return value

string
No description available.

Remarks

Examples

Source

Engine

See also

atof
atoi
getMax
getMin
mAbs
mAcos
mAsin
mAtan
mCeil
mClamp
mClampF
mCos
mDegToRad
mFloatLength
mFloor
mLog
mPow
mRadToDeg
mSin
mSolveCubic
mSolveQuadratic
mSqrt
mTan

References

This function is not called by any other functions.