From 369694335afb5c44f88faeb817d2cef7bafc2e63 Mon Sep 17 00:00:00 2001 From: Rowan Cockett Date: Tue, 19 May 2015 13:47:33 -0700 Subject: [PATCH] return dobs on makeSyntheticData call --- SimPEG/Survey.py | 1 + 1 file changed, 1 insertion(+) diff --git a/SimPEG/Survey.py b/SimPEG/Survey.py index 29bdb452..8abb547a 100644 --- a/SimPEG/Survey.py +++ b/SimPEG/Survey.py @@ -358,3 +358,4 @@ class BaseSurvey(object): noise = std*abs(self.dtrue)*np.random.randn(*self.dtrue.shape) self.dobs = self.dtrue+noise self.std = self.dobs*0 + std + return self.dobs