Example program for dormbr

For this routine two examples are presented. Both illustrate how the reduction to bidiagonal form of a matrix A may be preceded by a QR or LQ factorization of A.
In the first example, m>n, and
A = -0.57 -1.28 -0.39 0.25 -1.93 1.08 -0.31 -2.14 2.30 0.24 0.40 -0.35 -1.93 0.64 -0.66 0.08 0.15 0.30 0.15 -2.13 -0.02 1.03 -1.43 0.50 .  
The routine first performs a QR factorization of A as A=QaR and then reduces the factor R to bidiagonal form B: R=QbBPT. Finally it forms Qa and calls dormbr to form Q=QaQb.
In the second example, m<n, and
A = -5.42 3.28 -3.68 0.27 2.06 0.46 -1.65 -3.40 -3.20 -1.03 -4.06 -0.01 -0.37 2.35 1.90 4.31 -1.76 1.13 -3.15 -0.11 1.99 -2.70 0.26 4.50 .  
The routine first performs an LQ factorization of A as A=LPaT and then reduces the factor L to bidiagonal form B: L=QBPbT. Finally it forms PbT and calls dormbr to form PT=PbTPaT.