⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lu_factorization.cc

📁 一个通用的数学库
💻 CC
字号:
//-*-c++-*-----------------------------------------------------------------////  A simple LU factorization algorithm written using MTL//  The example matrix is the same as the getrf example, which//  is the LAPACK version of LU factorization.////-------------------------------------------------------------------------#include "mtl/lu.h"#include "mtl/matrix.h"#include "mtl/dense1D.h"#include "mtl/utils.h"/*  Sample output:    3x3  [  [1,2,2],  [2,1,2],  [2,2,1]  ]  3x3  [  [2,1,2],  [0.5,1.5,1],  [1,0.666667,-1.66667]  ]  [2,2,3,]    */intmain(){  using namespace mtl;  //begin  typedef matrix<double,                  rectangle<>,                  dense<external>,                  column_major>::type Matrix;  const Matrix::size_type N = 3;  double da [] = { 1, 2, 2, 2, 1, 2, 2, 2, 1 };  Matrix A(da, N, N);  dense1D<int> pivots(N, 0);  //end  print_all_matrix(A);  //begin  lu_factor(A, pivots);  //end  print_all_matrix(A);  print_vector(pivots);  return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -