Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
LU decomposition of a square matrix More...
#include <cassert>
#include <ctime>
#include <iomanip>
#include <iostream>
#include "./lu_decomposition.h"
Functions | |
template<typename T > | |
std::ostream & | operator<< (std::ostream &out, matrix< T > const &v) |
void | test1 () |
void | test2 () |
int | main (int argc, char **argv) |
LU decomposition of a square matrix
int main | ( | int | argc, |
char ** | argv ) |
std::ostream & operator<< | ( | std::ostream & | out, |
matrix< T > const & | v ) |
operator to print a matrix
void test1 | ( | ) |
Test LU decomposition
void test2 | ( | ) |
Test determinant computation using LU decomposition