mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
7d3fe69eff
- update the tutorial - update doc of deprecated cwise function - update cwise doc snippets
5 lines
141 B
C++
5 lines
141 B
C++
Array33i a = Array33i::Random(), b = Array33i::Random();
|
|
Array33i c = a * b;
|
|
cout << "a:\n" << a << "\nb:\n" << b << "\nc:\n" << c << endl;
|
|
|