Eigen is a C++ template library for linear algebra: matrices, vectors, and related algorithms.

learn more… | top users | synonyms

0
votes
1answer
30 views

How sort unique on a std::vector of Eigen::Vector?

The compiler can't figure out the less than operator for the type. I've also tried with a lambda and predicate function. #include <Eigen/Dense> typedef Eigen::Vector3f vec3; inline bool ...
1
vote
1answer
37 views

Block operations won't work on Eigen

The block operations on Eigen won't work. I'm getting a bunch of errors like: error: ‘Eigen::Vector4d’ has no member named ‘head’ The line of code generating this error is: ...
0
votes
0answers
14 views

Why do I get “estimated error” -1.#IND when doing BICGSTAB linear solver using ILUT perconditioner in eigen

I want to ask a question, when I use eigen (C++ library, do numerial linear computing) to solve a linear equations, I use bi-conjugate gradient BICGSTAB with Incomplete LU preconditioner, however, the ...
1
vote
1answer
79 views

Solving linear equation in C++ / Eigen

I am trying to program an algorithm in C + +, I use the Eigen library. The problem is that I need to solve the following equation in C + +: Find the coefficients: s1,..., sn ∈ R such that a(-1)ψi = ...
0
votes
1answer
30 views

C++ Eigen: subclassed vector get error in conversion with simple operation

I've subclassed Eigen::Vector2d for have some convenience methods that i don't will write here (like MyVec.randomize(), MyVec.distanceWithThreshold(), etc..). But I'm facing with a error in ...
0
votes
1answer
193 views

C# - Emgu CV - Face Recognition code stops execution at EigenObjectRecognizer and exit without error

I was working on Face Recognition and when i run the code it stops execution at the point where EigenObjectRecognizer is initialized and exits the program with out any error.Have any one else faced ...
1
vote
2answers
58 views

How do you make a matrix out of vectors in eigen?

I have four column vectors. I need to append them to make a four by four matrix. Is there a constructor or something for that?
0
votes
1answer
25 views

Subclass Eigen types

I'm looking for some library for some 2D and 3D linear geometry operation (intersection between 2D lines, between 3D lines and plane, stuffs like that) and I ran into Eigen that seems cool-and-fast, ...
2
votes
2answers
60 views

cv::Mat conversion to Eigen-Matrix and back

I have several feature vectors stored in a cv::Mat where, each row is a feature vector (several rows like this one here: [ x1 y1 x2 y2 x3 y3.... ]). I have to apply SVD on each feature vector and for ...
2
votes
1answer
56 views

Using a Eigen type inside boost graph

I've got some Eigen alignment issues when adding a vertex to the following graph: #include <boost/graph/adjacency_list.hpp> #include <Eigen/Eigen> struct Vertex { ...
2
votes
1answer
129 views

C++ Eigen move arrayXXd to MatrixXd

I want to move(or swap) an array of type Eigen::ArrayXXd to Eigen::MatrixXd. To achieve this, I tried, #include <iostream> #include <Eigen/Dense> using namespace std; int main(int , ...
2
votes
1answer
77 views

RcppEigen svd is very slow [closed]

Did RcppEigen's JacobiSVD become slower with upgrading to 3.0 ? My library using RcppEigen is now working fast anymore. > n<-1000 > m<-matrix(rnorm(n*n),n,n) > ...
2
votes
3answers
65 views

Error while creating object from templated class

I've been trying to find a way to sample random vectors from a multivariate normal distribution in C++, having both the mean vector and the covariance matrix, much like Matlab's mvnrnd function works. ...
1
vote
3answers
87 views

most efficient way to loop thought eigen matrix

I'm creating some functions to do things like the "separated sum" of negative and positive number, kahan, pairwise and other stuff where it doesn't matter the order I take the elements from the ...
1
vote
1answer
34 views

Convert a vector of 3D point to homogeneous representation in Eigen

I have a buffer containing N 3D points stored as [XYZXYZXYZ ... XYZ]. This buffer can be directly mapped to a Eigen::Matrix<float, 3, N> using Eigen::Map. Since I will transform the points ...
1
vote
1answer
43 views

Eigen boolean array slicing

In MATLAB it is common to slice out values that satisfy some condition from a matrix/array (called logical indexing). vec = [1 2 3 4 5]; condition = vec > 3; vec(condition) = 3; How do I do this ...
0
votes
0answers
36 views

MATLAB find() / Numpy nonzero idioms for Eigen

Chances are this is a very stupid question but I spent a pretty absurd amount of time looking for it on the documentation, to no avail. in MATLAB, the find() function gives me an array with the ...
0
votes
2answers
83 views

initializing a static eigen matrix with “comma initialization”

I'm using the Eigen Library here: http://eigen.tuxfamily.org/index.php?title=Main_Page When trying to compile this, it returns error: expected constructor, destructor, or type conversion before '.' ...
0
votes
1answer
45 views

Convert Eigen Affine3d to Affine2d

I have an affine transform in 3D and I wish to discard any z-axis information from. Is there a convenient way to convert from an Affine3d to and Affine2d?
0
votes
2answers
45 views

hyperthreading and turbo boost in matrix multiply - worse performance using hyper threading

I am tunning my GEMM code and comparing with Eigen and MKL. I have a system with four physical cores. Until now I have used the default number of threads from OpenMP (eight on my system). I assumed ...
1
vote
1answer
30 views

Is there a way to “force” MatrixBase::eval to happen on a template function argument?

I am working on code for a library that uses Eigen extensively, and frequently maps Eigen::Matrix objects with an NSObject subclass of my own design (vMAT_Array). Working with the library often ...
2
votes
1answer
175 views

max FLOPS for matrix multiplication Intel/AMD CPU

My formula for estimating the maximum FLOPs/s of an Intel CPU is Max SP FLOPs/s = frequencey * 4 SSE(8AVX) * 2 (MAC) * number of cores (not HW threads) Max DP FLOPs/s = 0.5 * Max SP FLOPs/s By MAC ...
2
votes
1answer
78 views

Boost::fusion, Eigen and zip transformation

This question is a spin-off of another question I had concerning boost::fusion. The idea is to use boost::fusion to iterate over a large C-style struct containing N-dimension arrays. Computation on ...
1
vote
1answer
25 views

How do I convert a ProductReturnType into a matrix?

I am using the C++ linear algebra library eigen. I have tried to multiply 2 matrices: static void do_stuff_with_matrix(Eigen::MatrixXf& mat) { return; } Eigen::MatrixXf a(3, 4); ...
0
votes
1answer
28 views

How do I set the values along the diagonal matrix using eigen?

I am trying to construct a diagonal matrix using eigen and then set the values along the diagonal: Eigen::DiagonalMatrix<int, Eigen::Dynamic> diagonal_matrix(5); for (int i = 0; ...
0
votes
1answer
31 views

How do I make a diagonal matrix in eigen with a dynamic size?

I want to make a diagonal matrix with the C++ linear algebra library eigen, but I do not know the size of the matrix during compile time. Hence, DiagonalMatrix<Scalar, SizeAtCompileTime> ...
3
votes
1answer
57 views

How do I express “<array-of-true-or-false> = <array> <= <scalar>” using Eigen 3?

I am porting some MATLAB code to C++ using the Eigen 3 template library, and I am looking for a good mapping for this common MATLAB idiom: K>> [1 2 3 4 5] <= 3 ans = 1 1 1 ...
0
votes
1answer
108 views

Randomly permute rows/columns of a matrix with eigen

I'm using Eigen and I've got a matrix: MatrixXi x = MatrixXi::Random(5); I'd like to randomly permute the rows and columns using a randomly drawn permutation (just one permutation for both the rows ...
0
votes
2answers
109 views

Installing the Eigen library in Visual C++ 2010

How can I install the Eigen library in Visual C++ 2010? I downloaded the library from eigen.tuxfamily But I do not know how can install it on my Visual C++. I want to run a program I downloaded and ...
0
votes
1answer
107 views

Transformations in Eigen::Affine3f

I am not too familiar with Eigen library and I am stuck at this piece of code motor1_to_motor2 = Translation3f(BigApeLeg::distanceJoint1ToJoint3(),0,0) * AngleAxisf(M_PI_2, ...
2
votes
0answers
133 views

Intel MIC offloading — how does it work with STL?

I'm working with a system that's implemented in C++/OpenMP code, and it uses STL and Eigen's data structures all over the place. Algorithmically, the code seems like a great candidate for acceleration ...
0
votes
1answer
61 views

Null Space Calculation using Eigen is wrong?

I'm using the Eigen library (http://eigen.tuxfamily.org) to do a Null Space calculation using the SVD function. I compared the output to the "Null" function in matlab, and got different results. ...
0
votes
0answers
32 views

Example for using iterative solver in Eigen

I need to solve a linear system using an iterative solver and I would like to learn on using the iterative solver module in Eigen using an example. Can someone provide me with an example of how to use ...
1
vote
0answers
60 views

call C++ using Eigen Library function in python

I'm doing some calculations in C++ with help of Eigen Library, the function is like this: MatrixXd Cov(MatrixXd Data) { VectorXd meanVector; ... return Covariance; } ..in the wrap python ...
1
vote
1answer
80 views

Accessing eigenvalues in eigen3

I am trying to set up eigen3 eigenvalue solver and it looks like I faced some complications. The code compiles well, but then fails at some point. The piece of code that fails is ...
0
votes
1answer
139 views

How to convert sparse matrix to dense matrix in Eigen

Is there some easy and fast way to convert a sparse matrix to a dense matrix of doubles? Because my SparseMatrix is not sparse any more, but became dense after some matrix products. Another question ...
1
vote
2answers
70 views

How to resize a Vector in Eigen3

I'm wrapping two Eigen3 vectors in a templated LineSegment<T,dim> class. You might use it like this: typedef LineSegment<double,2> LineSegment2d; typedef LineSegment<double,3> ...
0
votes
1answer
55 views

boost serialize Eigen MatrixXd to XML

I am trying to serialize an Eigen matrix using boost serialization. I have seen this question and tried to use the solution, however I have strange compiler errrors. I have a shared_ptr to a MatrixXd ...
0
votes
1answer
306 views

OpenCL Matrix Multiplication on Radean 7970 and Intel HD4000 GPUS vs Eigen on CPU

I am having some problems understanding the outcome of my comparison. Laptop with i7/intel hd4000 and server with 8Xeon 5400/7970 HDRadeon. I am multiplying: int M =1024*2, N = 1024*6, P = 1024*2; ...
0
votes
2answers
60 views

Transposing not quadratic matrix to another

I try to transpose from one MatrixX* into another (not quadratic but with correct dimensions). However the best I could find is the Transpose< Derived > ::transpose() function. Is there even a ...
0
votes
0answers
57 views

JNI load data -columns to Matrix from java to c

Hi Ivgot some unresolved problem with fill data-Matrix in c+ side .I would like to fill the MAtrix-from Eigen lib; in c++ , where iv got the columns in the java , and load the data throught JNi to ...
2
votes
2answers
72 views

How do i return a Eigen::Matrix from a method such it do not copy the data when returning

I have: Eigen::MatrixXf load_from_gpu() { Eigen::MatrixXf mat(m_rows,m_cols); clEnqueueReadBuffer(m_manager->m_gpu_queue_loader, m_buffer, CL_TRUE, 0, sizeof(float)*numel(), mat.data(), 0, ...
1
vote
2answers
108 views

Add row and column at zero position in matrix Eigen

I've got the matrix for example : C(400,400) and I would like to grow this matrix with one vector: row and column of this matrix at the begin-index 0 of the matrix for example : Matrix C: 3 2 5 ...
1
vote
2answers
219 views

how to find the transformation matrix of a change of basis with Eigen

I'm porting a program to Eigen. Now I have to rewrite a method that returns the 3D transformation matrix from one coordinate system A, defined by its origin and two axes, to a second coordinate ...
0
votes
1answer
42 views

How to delete Matrixxd def in Eigen in JNI

Exist the way how can I delete Matrixxd declared ? becouse when i want to use: delete This says error in compile Eigen::Matrix4d' argument given to 'delete', expected pointer ...
4
votes
1answer
56 views

How to do colwise operations in Eigen

I am doing this a lot: auto f_conj = f.conjugate(); //f is a MatrixXcf, so is C; for(n=0;n<X.cols();++n) C.col(n) = X.col(n).cwiseProduct(f_conj); Am I not supposed to be able to do ...
0
votes
2answers
92 views

Possible to get type of Eigen::MatrixBase<T> &

having a Eigen::MatrixBase & data, are there any way to get if it is a float or double matrix? I need to create an new complex matrix of the same size and type as the MatrixBase. If it is ...
-3
votes
1answer
25 views

How can i have both MatrixBase and DenseBase in a template function in Eigen [closed]

I have found out that i can create a templated eigen function like this: template <> CIL_EXPORTS void gpa<std::complex<float>>(const ...
0
votes
2answers
209 views

Eigen: Is there an inbuilt way to calculate sample covariance

I am using the Eigen library in C++: I am currently calculating the covariance matrix myself as follows: Eigen::MatrixXd covariance_matrix = Eigen::MatrixXd::Constant(21, 21, 0); data mean = ...
0
votes
0answers
109 views

Crash in optimized build that doesn't happen in debug build [closed]

I have the following code: Eigen::Matrix<double, 1, 1> asMatrix(double x) { Eigen::Matrix<double, 1, 1> m; m(0,0)=x; return m; } template<int K> struct DistParams { ...

1 2 3 4 5