Example program for dormhr

This example computes all the eigenvalues of the matrix A, where
A = 0.35 0.45 -0.14 -0.17 0.09 0.07 -0.54 0.35 -0.44 -0.33 -0.03 0.17 0.25 -0.32 -0.13 0.11 ,  
and those eigenvectors which correspond to eigenvalues λ such that Reλ<0. Here A is general and must first be reduced to upper Hessenberg form H by dgehrd. The program then calls dhseqr to compute the eigenvalues, and dhsein to compute the required eigenvectors of H by inverse iteration. Finally dormhr is called to transform the eigenvectors of H back to eigenvectors of the original matrix A.