Skip to content

Commit 9f282a3

Browse files
committed
idk
1 parent 448e5df commit 9f282a3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/MatMan.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def OLSRes(YOrig,RG,T,copy=True):
4242
#demean anyways!
4343
mRG = np.mean(RG,axis=0)
4444
RG = RG-np.tile(mRG,(T,1));
45-
4645
#B = np.linalg.solve(RG,YOrig) # more stable than pinv
4746
invRG = np.linalg.pinv(RG)
4847
B = np.dot(invRG,YOrig)

0 commit comments

Comments
 (0)