close all; clc; clear; % Problem EPage 45 % for n=3:10 A = hilb(n); c = cond(A' * A); disp( sprintf('n= %10d, condition number= %10.6e', n, c) ); end