mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Clang-format tests, examples, libraries, benchmarks, etc.
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
3252ecc7a4
commit
46e9cdb7fe
@@ -1,15 +1,13 @@
|
||||
#include <Eigen/Dense>
|
||||
#include <iostream>
|
||||
|
||||
int main()
|
||||
{
|
||||
int main() {
|
||||
Eigen::Array22f m;
|
||||
m << 1,2,
|
||||
3,4;
|
||||
m << 1, 2, 3, 4;
|
||||
Eigen::Array44f a = Eigen::Array44f::Constant(0.6);
|
||||
std::cout << "Here is the array a:\n" << a << "\n\n";
|
||||
a.block<2,2>(1,1) = m;
|
||||
a.block<2, 2>(1, 1) = m;
|
||||
std::cout << "Here is now a with m copied into its central 2x2 block:\n" << a << "\n\n";
|
||||
a.block(0,0,2,3) = a.block(2,1,2,3);
|
||||
a.block(0, 0, 2, 3) = a.block(2, 1, 2, 3);
|
||||
std::cout << "Here is now a with bottom-right 2x3 block copied into top-left 2x3 block:\n" << a << "\n\n";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user