Ejemplo n.º 1
0
 def test_plot_tf_gofs(self):
     with np.errstate(all='ignore'):
         with ImageComparison(self.path,
                              'time_frequency_gofs.png') as ic:
             plot_tf_gofs(self.st1p, self.st2, dt=self.dt, fmin=self.fmin,
                          fmax=self.fmax, show=False)
             plt.savefig(ic.name)
Ejemplo n.º 2
0
 def test_plot_tf_gofs(self, state, ignore_numpy_errors, image_path):
     plot_tf_gofs(state.st1p,
                  state.st2,
                  dt=state.dt,
                  fmin=state.fmin,
                  fmax=state.fmax,
                  show=False)
     plt.savefig(image_path)
Ejemplo n.º 3
0
 def test_plot_tf_gofs(self):
     with np.errstate(all='ignore'):
         with ImageComparison(self.path, 'time_frequency_gofs.png') as ic:
             plot_tf_gofs(self.st1p,
                          self.st2,
                          dt=self.dt,
                          fmin=self.fmin,
                          fmax=self.fmax,
                          show=False)
             plt.savefig(ic.name)
# constants for the signal
A1 = 4.
t1 = 2.
f1 = 2.
phi1 = 0.

# amplitude and phase error
phase_shift = 0.8
amp_fac = 3.

# generate the signal
H1 = (np.sign(t - t1) + 1) / 2
st1 = A1 * (t - t1) * np.exp(-2 * (t - t1))
st1 *= np.cos(2. * np.pi * f1 * (t - t1) + phi1 * np.pi) * H1

# reference signal
st2 = st1.copy()

# generate analytical signal (hilbert transform) and add phase shift
st1p = hilbert(st1)
st1p = np.real(np.abs(st1p) *
               np.exp((np.angle(st1p) + phase_shift * np.pi) * 1j))

# signal with amplitude error
st1a = st1 * amp_fac

plot_tf_gofs(st1a, st2, dt=dt, fmin=fmin, fmax=fmax, show=False)
plot_tf_gofs(st1p, st2, dt=dt, fmin=fmin, fmax=fmax, show=False)

plt.show()