This website requires JavaScript.
Explore
Help
Sign In
mirror
/
eigen
Watch
2
Star
0
Fork
0
You've already forked eigen
mirror of
https://gitlab.com/libeigen/eigen.git
synced
2024-12-15 07:10:37 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
22ae236d4e
eigen
/
doc
/
snippets
/
MatrixBase_row.cpp
4 lines
82 B
C++
Raw
Normal View
History
Unescape
Escape
* Merge Extract and Part to the Part expression. Renamed "MatrixBase::extract() const" to "MatrixBase::part() const" * Renamed static functions identity, zero, ones, random with an upper case first letter: Identity, Zero, Ones and Random.
2008-07-21 08:34:46 +08:00
Matrix3d
m
=
Matrix3d
:
:
Identity
(
)
;
- rework the coefficients API - make vectors use a separate loop unroller, so that copying a row-vector into a col-vector is now possible - add much more documentation - misc improvements
2007-12-24 19:14:25 +08:00
m
.
row
(
1
)
=
Vector3d
(
4
,
5
,
6
)
;
cout
<
<
m
<
<
endl
;
Reference in New Issue
Copy Permalink