cart-elc

Source code for CART-ELC
git clone git://git.laack.co/cart-elc.git
Log | Files | Refs | README | LICENSE

Cwise_product.cpp (141B)


      1 Array33i a = Array33i::Random(), b = Array33i::Random();
      2 Array33i c = a * b;
      3 cout << "a:\n" << a << "\nb:\n" << b << "\nc:\n" << c << endl;
      4