我试图产生一个特定频带的信号。我尝试了while &for循环,但是没有得到一个足够的解决方案。
import numpy as np
amp = 1.
sfreq = 1000.
duration = 1000.
nse_amp = 0.9
#____
freq_steps = 0.1
freq_start = 200
freq_end = 220
freq_band = np.arange(freq_start,freq_end,freq_steps)
sig_freq1 = freq_band
#____
n_epochs = 120
epoch_length = 1 # make epoch of 1 second each
times = np.arange(0,epoch_length,1/(sfreq))
def simulate_x_y(times, n_epochs, amp, sig_freq1, nse_amp):
x = np.zeros((n_epochs, times.size))
for i in range(0, n_epochs):
for j in xrange(freq_start, freq_end):
x[i] = amp * np.sin(2 * np.pi * freq_band[j] * times)
return x我希望x有一个从200到220的频带。另外,我不希望数组中的x.shape (120, 1000)不被更改。有人做过类似的事吗?
发布于 2015-06-30 09:16:24
解决了问题。比我想象的要容易得多。对所有好奇的人来说。
import numpy as np
amp = 1.
sfreq = 1000.
duration = 1000.
nse_amp = 0.9
freq1_start = 200
freq1_end = 300
freq_band1 = np.linspace(freq1_start, freq1_end, times.size)
#____
n_epochs = 120
epoch_length = 1 # make epoch of 1 second each
times = np.arange(0,epoch_length,1/(sfreq))
def simulate_x_y(times, n_epochs, amp, freq_band1):
x = np.zeros((n_epochs, times.size))
for i in range(0, n_epochs):
x[i] = (amp * np.sin(2 * np.pi * freq_band1 * times))
return xhttps://stackoverflow.com/questions/31131925
复制相似问题