Hello,
I need to solve efficiently R^TRx=b where R is upper triangular. I cover this use-case doing two solve steps:
R^Ty=b,
Rx=y
and this works OK. However, I wonder whether there is a more efficient LAPACK or MKL API to solve the entire R^TRx=b at once.
Many TIA,
Best regards,
Giovanni



