QR decomposition

468 Views Asked by At

Is there a way to implement a QR decomposition like in Matlab? In particular, I am interested in the following command:

[C,R,P] = qr(S,B)

According to the description it "returns a permutation matrix P that is chosen to reduce fill-in in R. You can use C, R, and P to compute a least-squares solution to the sparse linear system SX = B with X = P(R\C)".

I need to run the Python equivalent of the MATLAB code [Q, R, E] = qr(X,0);

1

There are 1 best solutions below

1
On

scipy.linalg.qr provides the functionality you're looking for when given the argument pivoting=True.