We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec677f commit d6dc40cCopy full SHA for d6dc40c
mtpy/modeling/simpeg/data_3d.py
@@ -260,4 +260,6 @@ def data_object(self):
260
""" create a data object"""
261
observations, errors = self.get_observations_and_erros()
262
survey = self.get_survey()
263
- return data.Data(survey, dobs=observations, standard_deviation=errors.flatten())
+ return data.Data(survey,
264
+ dobs=observations.flatten(),
265
+ standard_deviation=errors.flatten())
0 commit comments