Skip to content

Commit 94cd0f1

Browse files
committed
Remove normalization for MT
1 parent d0cb726 commit 94cd0f1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

simpeg_drivers/components/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def get_normalizations(self):
300300
if comp in ["gz", "bz", "gxz", "gyz", "bxz", "byz"]:
301301
normalizations[chan][comp] = -1 * np.ones(self.mask.sum())
302302
elif self.params.inversion_type in ["magnetotellurics"]:
303-
normalizations[chan][comp] = -1 * np.ones(self.mask.sum())
303+
normalizations[chan][comp] = np.ones(self.mask.sum())
304304
elif self.params.inversion_type in ["tipper"]:
305305
if "imag" in comp:
306306
normalizations[chan][comp] = -1 * np.ones(self.mask.sum())

0 commit comments

Comments
 (0)