This website works better with JavaScript.
Explore
Help
Sign In
lib
/
Eigen-3.4.0
Watch
1
Star
0
Fork
You've already forked Eigen-3.4.0
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
Cloned library Eigen-3.4.0 with extra build files for internal package management.
4
Commits
1
Branch
0
Tags
3.2 MiB
Tree:
03482bc44a
Eigen-3.4.0
/
doc
/
snippets
/
MatrixBase_row.cpp
4 lines
82 B
Raw
Normal View
History
Unescape
Escape
Initial commit
2 years ago
Matrix3d
m
=
Matrix3d
:
:
Identity
(
)
;
m
.
row
(
1
)
=
Vector3d
(
4
,
5
,
6
)
;
cout
<
<
m
<
<
endl
;