Skip to content

Commit dcbe69c

Browse files
committed
Minor updates to print statements in example inversions.
1 parent 2d1d23d commit dcbe69c

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

cherab/tools/inversions/svd.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ def invert_svd(w_matrix, b_vector):
2727
# reshape b_vector into a column vector
2828
b_vector = b_vector.reshape((len(b_vector), 1))
2929

30-
print(b_vector.shape)
31-
3230
inverted_x_vector = (inverse_w_matrix * b_vector).flatten()
3331

3432
return np.asarray(inverted_x_vector).flatten()

0 commit comments

Comments
 (0)