Example program for dopmtr

This example computes the two smallest eigenvalues, and the associated eigenvectors, of the matrix A, where
A = 2.07 3.87 4.20 -1.15 3.87 -0.21 1.87 0.63 4.20 1.87 1.15 2.06 -1.15 0.63 2.06 -1.81 ,  
using packed storage. Here A is symmetric and must first be reduced to tridiagonal form T by dsptrd. The program then calls dstebz to compute the requested eigenvalues and dstein to compute the associated eigenvectors of T. Finally dopmtr is called to transform the eigenvectors to those of A.