mirror of
https://github.com/boostorg/ublas.git
synced 2026-02-22 03:42:19 +00:00
19 lines
588 B
C++
19 lines
588 B
C++
#include <boost/numeric/ublas/matrix.hpp>
|
|
#include <boost/numeric/ublas/io.hpp>
|
|
|
|
int main () {
|
|
using namespace boost::numeric::ublas;
|
|
matrix<std::complex<double> > m (3, 3);
|
|
for (unsigned i = 0; i < m.size1 (); ++ i)
|
|
for (unsigned j = 0; j < m.size2 (); ++ j)
|
|
m (i, j) = std::complex<double> (3 * i + j, 3 * i + j);
|
|
|
|
std::cout << - m << std::endl;
|
|
std::cout << conj (m) << std::endl;
|
|
std::cout << real (m) << std::endl;
|
|
std::cout << imag (m) << std::endl;
|
|
std::cout << trans (m) << std::endl;
|
|
std::cout << herm (m) << std::endl;
|
|
}
|
|
|