Initial commit
This commit is contained in:
4
Eigen3/doc/snippets/MatrixBase_cwiseProduct.cpp
Normal file
4
Eigen3/doc/snippets/MatrixBase_cwiseProduct.cpp
Normal file
@@ -0,0 +1,4 @@
|
||||
Matrix3i a = Matrix3i::Random(), b = Matrix3i::Random();
|
||||
Matrix3i c = a.cwiseProduct(b);
|
||||
cout << "a:\n" << a << "\nb:\n" << b << "\nc:\n" << c << endl;
|
||||
|
||||
Reference in New Issue
Block a user