#include <fstream>
#include <iostream>
#include <iomanip>
#include "mcltypes.h"
#include "comparisonop.h"
#include "basicop.h"
#include "elementaryop.h"
Go to the source code of this file.
|
std::vector< std::string > | mcl::Split (const std::string &string, char delim) noexcept |
|
template<class T > |
void | mcl::Print (const Matrix< T > &matrix) noexcept |
|
template<class T > |
Matrix< T > | mcl::Transpose (const Matrix< T > &matrix) noexcept |
|
template<class T > |
Matrix< T > | mcl::Multiply (const Matrix< T > &matrix, T value) noexcept |
|
template<class T > |
Matrix< T > | mcl::Multiply (const Matrix< T > &matrix_a, const Matrix< T > &matrix_b) noexcept |
|
template<class T > |
std::vector< T > | mcl::Multiply (const Matrix< T > &matrix_a, const std::vector< T > &vector) noexcept |
|
template<class T > |
T | mcl::Max (const Matrix< T > &matrix) noexcept |
|
EigOutput | mcl::Eig (const Matrix< Real > &matrix) noexcept |
|
Matrix< Real > | mcl::RealPart (const Matrix< Complex > &input) noexcept |
|
template<class T > |
bool | mcl::IsEqual (const Matrix< T > &matrix_a, const Matrix< T > &matrix_b) noexcept |
|
bool | mcl::MatrixOpTest () |
|