// -*- c++ -*- // // $COPYRIGHT$ // //=========================================================================== #include "mtl/mtl2lapack.h" #include "mtl/dense1D.h" #include "mtl/utils.h" using namespace std; /* Sample Output 3x3 [ [2,4,8], [2,8,16], [2,16,32] ] Row scale factors: [0.125,0.0625,0.03125,] Column scale factors: [4,2,1,] Scaled A: 3x3 [ [1,1,1], [0.5,1,1], [0.25,1,1] ] */ int main() { const int N = 3; using namespace mtl; //begin double da [] = { 2, 2, 2, 4, 8, 16, 8, 16, 32 }; mtl2lapack::lapack_matrix::type A(da, N, N); double rowcond, colcond; double amax; dense1D rowsca(N), colsca(N); int info; //end print_all_matrix(A); // Compute and print the scale factors that will // equilibrate A //begin info = mtl2lapack::geequ(A, rowsca, colsca, rowcond, colcond, amax); if (info > N) { cout << "Column " << info - N << " of A is exactly zero." << endl; return 0; } else if (info > 0) cout << "Row " << info << " of A is exactly zero." << endl; //end cout << "Row scale factors:" << endl; print_vector(rowsca); cout << "Column scale factors:" << endl; print_vector(colsca); // Use the scale factors to equilibrate A and print // the equilibrated A. for (int i = 0; i < N; ++i) for (int j = 0; j < N; ++j) A(i,j) *= rowsca[i] * colsca[j]; cout << "Scaled A:" << endl; print_all_matrix(A); return 0; }