Description
Solving Quadratics Using Hardware Floating-Point
Topics: Floating-point instructions
Prerequisite Reading: Chapters 1-9
float Quadratic(float x, float a, float b, float c) ;
Computes the quadratic, ๐๐ฅ2+๐๐ฅ+๐
float Discriminant(float a, float b, float c) ; Computes the value of the discriminant, ๐2โ4๐๐ Functions Root1 and Root2 should call this function.
These functions are called by a main program download from here. If your code is correct, the display should look similar to the image shown, the sliders can be used to vary the coefficient values, and pressing the blue pushbutton will restore the initial conditions. Otherwise, incorrect return values will cause an error message to be displayed as white text on a red background and the program will be halted.
Reviews
There are no reviews yet.