commit | 3cd2a125b2712d6b7c620bef0671c6a05839d6e5 | [log] [tgz] |
---|---|---|
author | Benoit Jacob <jacob.benoit.1@gmail.com> | Mon Dec 24 11:14:25 2007 +0000 |
committer | Benoit Jacob <jacob.benoit.1@gmail.com> | Mon Dec 24 11:14:25 2007 +0000 |
tree | 039a066cff371aff4884e6bde9cc6b2921ff48c3 | |
parent | e9375836556a65b9cc5a55e49acdb823bc111a30 [diff] [blame] |
- 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
diff --git a/doc/snippets/MatrixBase_col.cpp b/doc/snippets/MatrixBase_col.cpp new file mode 100644 index 0000000..ae287db --- /dev/null +++ b/doc/snippets/MatrixBase_col.cpp
@@ -0,0 +1,3 @@ +Matrix3d m = Matrix3d::identity(); +m.col(1) = Vector3d(4,5,6); +cout << m << endl;