mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Update SVD Module with Options template parameter
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
89c6ab2385
commit
18b50458b6
@@ -96,9 +96,9 @@ template<typename MatrixType> void diagonalmatrices(const MatrixType& m)
|
||||
// products do not allocate memory
|
||||
MatrixType res(rows, cols);
|
||||
internal::set_is_malloc_allowed(false);
|
||||
res.noalias() = ldm1 * m;
|
||||
res.noalias() = m * rdm1;
|
||||
res.noalias() = ldm1 * m * rdm1;
|
||||
res.noalias() = ldm1 * m1;
|
||||
res.noalias() = m1 * rdm1;
|
||||
res.noalias() = ldm1 * m1 * rdm1;
|
||||
internal::set_is_malloc_allowed(true);
|
||||
|
||||
// scalar multiple
|
||||
|
||||
Reference in New Issue
Block a user