aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/MatrixBase_cwise_const.cpp
blob: 2b7e481c88d1b6707569af6cbfabb051d5919ebe (plain)
1
2
3
4
Vector3d v(-1,2,-3);
cout << "the absolute values:" << endl << v.cwise().abs() << endl;
cout << "the absolute values plus one:" << endl << v.cwise().abs().cwise()+1 << endl;
cout << "sum of the squares: " << v.cwise().square().sum() << endl;