/*T Math/CS 466/666 Midterm Solutions \medskip\noindent Problem 1(iii). Write or modify a computer program to computer the Frobenious norm $$ \|A\|_F = {\textstyle \sqrt{\sum_{i,j} |A_{ij}|^2}} $$ of the $4\times 4$ matrix $A$ with entries given by the formula $A_{ij}=\sqrt{\vphantom{|}i+2j}$. */ #include #include double normF(int n,double A[n][n]){ double r=0; for(int i=0;i