Re: [Rd] F77_CALL(dgetrs) C++ call in R-devel

2022-12-21 Thread Lars Relund
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

Re: [Rd] F77_CALL(dgetrs) C++ call in R-devel

2022-12-20 Thread 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 LASolveT(MatSimple &P, MatSimple &w, const | MatSimple &r) { | int rows = P.rows; | int nrhs = 1; | int lda = rows; | i