Skip to content
Snippets Groups Projects

Adjusted Package Entry-point

1 file
+ 6
4
Compare changes
  • Side-by-side
  • Inline
@@ -474,10 +474,12 @@ class QRFactorization(SingularValueDecomposition):
if weights is None:
return values
weights = np.sqrt(weights)
return np.array([
values[0] * weights,
values[1] * weights,
])
return np.array(
[
values[0] * weights,
values[1] * weights,
]
)
def calculate(
self,
Loading