/* Midterm Part 2 Question 2. The file matrix.c contains C code that defines the 14x14 matrix A. Use the power method and inverse power method to find |A|_2 and |A-1|_2 to at least 10 significant digits. Then compute cond2(A). */ #include #include #include #include "matrixlib.h" double q6matnorm2(int n,double A[n][n]){ double B[n][n],y[n],yk[n]; bzero(B,sizeof(double)*n*n); for(int k=0;k