mirror of
https://github.com/boostorg/ublas.git
synced 2026-01-23 06:02:16 +00:00
10 lines
205 B
C++
10 lines
205 B
C++
#include <boost/numeric/ublas/vector.hpp>
|
|
#include <boost/numeric/ublas/io.hpp>
|
|
|
|
int main () {
|
|
using namespace boost::numeric::ublas;
|
|
zero_vector<double> v (3);
|
|
std::cout << v << std::endl;
|
|
}
|
|
|