#include // for basic I/O support #include // defines constant M_PI for 3.14159... #include // allows us to control precision of output #include "matrix.h" // our csci146 matrix class using namespace std; using namespace csci146; int main() { cout << setprecision(3) << fixed; // force all numbers to be printed with fixed precision }