source:
pacpussensors/trunk/Vislab/lib3dv-1.2.0/lib3dv/eigen/doc/examples/QuickStart_example.cpp
Last change on this file was 136, checked in by , 8 years ago | |
---|---|
File size: 206 bytes |
Line | |
---|---|
1 | #include <iostream> |
2 | #include <Eigen/Dense> |
3 | |
4 | using Eigen::MatrixXd; |
5 | |
6 | int main() |
7 | { |
8 | MatrixXd m(2,2); |
9 | m(0,0) = 3; |
10 | m(1,0) = 2.5; |
11 | m(0,1) = -1; |
12 | m(1,1) = m(1,0) + m(0,1); |
13 | std::cout << m << std::endl; |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.