Thanks I got it to work!
I will try to migrate to (Rcpp)Armadillo asap.
Lars
Den tir. 20. dec. 2022 kl. 14.09 skrev Dirk Eddelbuettel :
>
> On 20 December 2022 at 12:33, Lars Relund wrote:
> | In my package, I have the method:
> |
> | /** Solve equations transpose(P)w = r. */
> | int L
On 20 December 2022 at 12:33, Lars Relund wrote:
| In my package, I have the method:
|
| /** Solve equations transpose(P)w = r. */
| int LASolveT(MatSimple &P, MatSimple &w, const
| MatSimple &r) {
| int rows = P.rows;
| int nrhs = 1;
| int lda = rows;
| i