#include <cstring>
#include <iostream>
#include <fstream>
#include <vector>
#include <sstream>
#include "Matrix.hpp"
#include "MathException.hpp"
Go to the source code of this file.
Namespaces | |
namespace | kn |
Functions | |
template<class T > | |
void | kn::exportMatrix (const Matrix< T > &M, const std::string &fileName, const bool &headerMode=false, const std::string &comments="") |
Export a matrix in a file. | |
template<class T > | |
void | kn::loadMatrix (Matrix< T > &M, const std::string &fileName) |
Load a matrix from a file. |