mirror of
https://github.com/boostorg/ublas.git
synced 2026-02-09 23:42:23 +00:00
10 lines
208 B
C++
10 lines
208 B
C++
#include <boost/numeric/ublas/matrix.hpp>
|
|
#include <boost/numeric/ublas/io.hpp>
|
|
|
|
int main () {
|
|
using namespace boost::numeric::ublas;
|
|
zero_matrix<double> m (3, 3);
|
|
std::cout << m << std::endl;
|
|
}
|
|
|