Re: [eigen] Error when using tridiagonalization_inplace_selector |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Error when using tridiagonalization_inplace_selector
- From: "Alberto Luaces" <eigen@xxxxxxxxxxxxxxxxxxxx>
- Date: Wed, 08 Sep 2021 17:53:27 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= mime-version:message-id:in-reply-to:references:date:from:to :subject:content-type; s=fm3; bh=ZeXQ0pJwhTtEA+TBNEXF7adrHzFkiNN 3v1lp0Gwojqs=; b=ZZ0GHjed65Uv8yhAyTlYayEEw1gAAuuIM8A+QrJrpfcfHRg gQv4NRSFnZoL5GW9y4+TnhFnkZC+ETxJjHT6/uhQnpEu5VGjdEdt90VBvVfTGnqo 6u8q6jlbLqoJhxrK+wYE2iIuLBoFdh0fTX2loTMD5wTkG1/h8UbWNJGVcSLRjPxv ulm3/hfaVhxFjEFYNnlkWnznUIgwyKyVeeKyHJ6fUtnNdlWD1OAxSFn8ycY1c/CG NMf7DNMkiPIOp0xp8MzKMAhbkkSgBd4BoOjZnDaBfUhCUHTGSgWgQuXE24bsmTVs WXEoEJiqsrFirFIjiFxFmq4wKEBdtuh+pltKXfw==
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=ZeXQ0p JwhTtEA+TBNEXF7adrHzFkiNN3v1lp0Gwojqs=; b=bRcI8rQs945iDrvXHstIQe B8RkM53JXEaLuEb4ujtOrTLvFbKPryo8SqgcXjLk9BdzmD8po5EI7SVF3ua9O7mN qfaKlLkKlmQAkIbzNtlsQ3Henec7a1JhIk7Z9bFMnvKD1OPj78uwGG/ZvqiUQEP5 mnrWAS/5CCg09Hw6v0R20GcWrP7G1LuXUObXQF32f3yDjjGAUsbVEpYNRqyShxCS y6MjyQ/wMbDsPyYgNSOfvTG1OfW4CYVJj7Ne2XDm99BNKpqAK/krqK9T8Hl4SUeu xM/fGVIYpGe752SFH/bNAm+TkpCnZX72YhjnlOmYGUraUtRxvc9cRc9ReRmu/ttA ==
Perfect, thanks!
On Wed, Sep 8, 2021, at 17:39, Christoph Hertzberg wrote:
> You should probably change the type of the solver to either
>
> Eigen::SelfAdjointEigenSolver<Eigen::Matrix<double,9,9> >
> or
> Eigen::SelfAdjointEigenSolver<Eigen::MatrixXd>
>
> Not sure, if we really want to support `Eigen::Matrix<double, -1, 9>`
> here. It would of course be possible, as this implicitly implies that
> the number of rows is 9 as well (otherwise, there is no Eigenvalue
> decomposition).
--
Alberto