Search for full QR decomposition with reduced QR

What is the best way to find additional orthonormal Q columns? I have already calculated the reduced QR decomposition, but I need a complete QR decomposition.

I assume there is a standard approach to this, but I had trouble finding it.

You may wonder why I need a full Q-matrix. I use it to apply a constraint matrix for "natural" splines to a shortened extension of the base series. I am doing this in Java, but looking for a language independent answer.

+3
source share
1 answer

Add the columns in Q sequentially as follows:

  • Select a vector that is not yet in Q
  • Orthogonalize it by Q columns
  • Q.
  • R

. ,

, "" , -, , .

+2

Source: https://habr.com/ru/post/1796368/


All Articles