python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
`std::move` an Eigen object in a constructor?
The Eigen3 documentation warns against passing Eigen objects by value, but they only refer to objects being used as function arguments.
Suppose I'm using Eigen 3.4.0 and C++20. If I have a struct with...
NickFP
Votes: 0
Answers: 1
Eigen static lib memory align
I am using C++17, GCC 7.4.0, Eigen 3.3.4
This is my minimal example. I have 2 classes: B and C. C is in a static library.
The program crashes with Segmentation Fault when trying to create an instance ...

AndroC
Votes: 0
Answers: 1
Eigen rowwise multiplication of two matrices
I am trying to do a rowwise multiplication between two matrices.
The dimensions are Nx3 and Nx1 and the output should be Nx3.
I saw several related answers, but they are trying to do dot project, whic...
BruceZ
Votes: 0
Answers: 1
Can OpenMP's SIMD directive vectorize indexing operations?
Say I have an MxN matrix (SIG) and a list of Nx1 fractional indices (idxt). Each fractional index in idxt uniquely corresponds to the same position column in SIG. I would like to index to the appropri...
drakon101
Votes: 0
Answers: 2