Calculates the numerical rank of a dense complex matrix. More...
#include "inc/dense/dense.h"
Namespaces | |
namespace | syten |
Syten namespace. | |
Functions | |
double | syten::full_rank_ness (DenseTensor< 2, double > &&a) |
Estimates the full-rank-ness of a real matrix A (compared to its smaller dimension) using QR with pivoting. More... | |
double | syten::full_rank_ness (DenseTensor< 2, double > const &a) |
Estimates the full-rank-ness (compared to its smaller dimension) of a real matrix A using QR with pivoting. More... | |
double | syten::full_rank_ness (DenseTensor< 2, std::complex< double > > &&a) |
Estimates the full-rank-ness of a complex matrix A (compared to its smaller dimension) using QR with pivoting. More... | |
double | syten::full_rank_ness (DenseTensor< 2, std::complex< double > > const &a) |
Estimates the full-rank-ness (compared to its smaller dimension) of a complex matrix A using QR with pivoting. More... | |
Index | syten::rank (DenseTensor< 2, double > &&a) |
Estimates the rank of a real matrix A using QR with pivoting. More... | |
Index | syten::rank (DenseTensor< 2, double > const &a) |
Estimates the rank of a real matrix A using QR with pivoting. More... | |
Index | syten::rank (DenseTensor< 2, std::complex< double > > &&a) |
Estimates the rank of a complex matrix A using QR with pivoting. More... | |
Index | syten::rank (DenseTensor< 2, std::complex< double > > const &a) |
Estimates the rank of a complex matrix A using QR with pivoting. More... | |
Calculates the numerical rank of a dense complex matrix.