
Eigen
seamanj
这个作者很懒,什么都没留下…
展开
-
Lesson 14 Usage as temporary objects
As shown above, static methods as Zero() and Constant() can be used to initialize variables at the time of declaration or at the right-hand side of an assignment operator. You can think of these metho原创 2015-11-03 18:06:42 · 409 阅读 · 0 评论 -
Lesson 7 Matrix-matrix and matrix-vector multiplication
Matrix-matrix multiplication is again done with operator*. Since vectors are a special case of matrices, they are implicitly handled there too, so matrix-vector product is really just a special case o原创 2015-11-02 21:08:27 · 903 阅读 · 0 评论 -
Lesson 4 Fixed vs. Dynamic size
Matrix4f mymatrix; really amounts to just doingfloat mymatrix[16]; so this really has zero runtime cost. By contrast, the array of a dynamic-size matrix is always allocated on the he原创 2015-11-02 20:46:08 · 464 阅读 · 0 评论 -
Lesson 6 Transposition and conjugation
The transpose , conjugate , and adjoint (i.e., conjugate transpose) of a matrix or vector are obtained by the member functions transpose(), conjugate(), and adjoint(), respectively.E原创 2015-11-02 21:04:22 · 789 阅读 · 0 评论 -
Lesson 8 Basic arithmetic reduction operations
Eigen also provides some reduction operations to reduce a given matrix or vector to a single value such as the sum (computed by sum()), product (prod()), or the maximum (maxCoeff()) and minimum原创 2015-11-02 21:11:26 · 372 阅读 · 0 评论 -
Lesson 9 Array multiplication
First of all, of course you can multiply an array by a scalar, this works in the same way as matrices. Where arrays are fundamentally different from matrices, is when you multiply two together. Matric原创 2015-11-02 21:15:08 · 567 阅读 · 0 评论 -
install eigen in ubuntu and use it in qt
1. download eigen from the link : http://eigen.tuxfamily.org/index.php?title=Main_Page2.extract and copy to a location you wantsudo cp -avr /home/tjiang/Downloads/eigen-eigen-b30b87236a1原创 2016-01-27 19:46:10 · 891 阅读 · 0 评论 -
cmake cannot find eigen3 in ubuntu
the reason is missing EIGEN3_INCLUDE_DIRthen we need to define it in cmakelist.txt fileadd a line like this in this file:Set(EIGEN3_INCLUDE_DIR "/usr/local/include/eigen-eigen-b30b87236a1b")原创 2016-01-29 02:40:02 · 7775 阅读 · 0 评论 -
how to calculate the QR decomposition of a matrix
In many papers(such as [1], [2]), we need to solve the polar decomposition of a matrix which decompose a matrix A into a rotation matrix R and a symmetric matrix S, s.t. A = RSHere, we will be u原创 2016-02-05 05:18:13 · 1037 阅读 · 0 评论 -
Lesson16 Norm computations
The (Euclidean a.k.a. ) squared norm of a vector can be obtained squaredNorm() . It is equal to the dot product of the vector by itself, and equivalently to the sum of squared absolute values of its原创 2015-11-05 19:15:44 · 746 阅读 · 0 评论 -
Lesson 11 Converting between array and matrix expressions
When should you use objects of the Matrix class and when should you use objects of the Array class? You cannot applyMatrix operations on arrays, or Array operations on matrices. Thus, if you n原创 2015-11-02 21:35:11 · 394 阅读 · 0 评论 -
Lesson 10 Other array coefficient-wise operations
The Array class defines other coefficient-wise operations besides the addition, subtraction and multiplication operators described above. For example, the .abs() method takes the absolute value of原创 2015-11-02 21:33:50 · 643 阅读 · 0 评论 -
Lesson 13 The comma initializer
Eigen offers a comma initializer syntax which allows the user to easily set all the coefficients of a matrix, vector or array. Simply list the coefficients, starting at the top-left corner and movin原创 2015-11-03 18:05:28 · 710 阅读 · 0 评论 -
Lesson 12 Using block operations
The most general block operation in Eigen is called .block() . There are two versions, whose syntax is as follows:Block operationVersion constructing a dynamic-size block expressio原创 2015-11-03 17:55:25 · 490 阅读 · 0 评论 -
Lesson15 Reductions
In Eigen, a reduction is a function taking a matrix or array, and returning a single scalar value. One of the most used reductions is .sum() , returning the sum of all the coefficients inside a gi原创 2015-11-05 18:12:14 · 407 阅读 · 0 评论 -
lesson18 Aliasing
AliasingDense matrix and array manipulationIn Eigen, aliasing refers to assignment statement in which the same matrix (or array or vector) appears on the left and on the right of the ass原创 2015-11-07 20:32:31 · 623 阅读 · 0 评论 -
Lesson 2 Matrices and vectors
#include #include using namespace Eigen;using namespace std;int main(){ MatrixXd m = MatrixXd::Random(3, 3); m = (m + MatrixXd::Constant(3, 3, 1.2)) * 50; cout << "m =" << endl << m << endl;原创 2015-10-25 00:42:27 · 730 阅读 · 0 评论 -
Storage orders
There are two different storage orders for matrices and two-dimensional arrays: column-major and row-major. This page explains these storage orders and how to specify which one should be used.Colu原创 2015-11-12 03:32:25 · 549 阅读 · 0 评论 -
Lesson 3 Matrix Resizing
The resize() method is a no-operation if the actual matrix size doesn't change; otherwise it is destructive: the values of the coefficients may change. If you want a conservative variant of resize()原创 2015-11-02 20:44:45 · 505 阅读 · 0 评论 -
Lesson 5 Convenience typedefs
Eigen defines the following Matrix typedefs:MatrixNt for Matrix. For example, MatrixXi for Matrix.VectorNt for Matrix. For example, Vector2f for Matrix.RowVectorNt for Matrix. For example, RowVect原创 2015-11-02 20:48:12 · 488 阅读 · 0 评论 -
Lesson 1 A simple first program
The Eigen/Dense header file defines all member functions for the MatrixXd type and related types原创 2015-10-25 00:32:52 · 755 阅读 · 0 评论 -
check eigen version
Eigen/src/Core/util/Macros.h原创 2019-05-13 20:44:09 · 1137 阅读 · 0 评论