我有加速计数据的时间序列,我希望将其整合到速度和位置时间序列中。这是使用FFT完成的,但Matlab和Python中的两个方法给出了不同的结果。
Matlab代码:
nsamples = length(acc(:,1));
domega = 2*pi/(dt*nsamples);
acchat = fft(acc);
% Make frequency array:
Omega = zeros(nsamples,1);
% Create Omega:
if even(nsamples)
nh = nsamples/2;
Omega(1:nh+1) = domega*(0:nh);
Omega(nh+2:nsamples) = domega*(-nh+1:-1);
else
nh = (nsamples-1)/2;
Omega(1:nh+1) = domega*(0:nh);
Omega(nh+2:nsamples) = domega*(-nh:-1);
end
% High-pass filter:
n_low=floor(2*pi*f_low/domega);
acchat(1:n_low)=0;
acchat(nsamples-n_low+1:nsamples)=0;
% Multiply by omega^2:
acchat(2:nsamples) = -acchat(2:nsamples) ./ Omega(2:nsamples).^2;
% Inverse Fourier transform:
pos = real(ifft(acchat));
% --- End of function ---
Python代码:
import numpy as np
def acc2velpos(acc, dt):
n = len(acc)
freq = np.fft.fftfreq(n, d=dt)
omegas = 2 * np.pi * freq
omegas = omegas[1:]
# Fast Fourier Transform of Acceleration
accfft = np.array(np.fft.fft(acc, axis=0))
# Integrating the Fast Fourier Transform
velfft = -accfft[1:] / (omegas * 1j)
posfft = accfft[1:] / ((omegas * 1j) ** 2)
velfft = np.array([0] + list(velfft))
posfft = np.array([0] + list(posfft))
# Inverse Fast Fourier Transform back to time domain
vel = np.real(np.fft.ifft(velfft, axis=0))
pos = np.real(np.fft.ifft(posfft, axis=0))
return vel, pos
这两个代码通常应该给出完全相同的结果,但是当我绘制比较时,这就是我得到的结果
加速到速度
加速定位
任何想法为什么Python结果与Matlab结果不一致?对我来说,获得与我从实验中使用这些加速度测量来识别驳船运动的结果相同是至关重要的。
我在Python中也有第二个版本,我尝试在Matlab代码中包含过滤器。这也会产生不同的结果,就像Python中没有过滤器的那样。
def acc2vel2(acc, dt, flow):
nsamples = len(acc)
domega = (2*np.pi) / (dt*nsamples)
acchat = np.fft.fft(acc)
# Make Freq. Array
Omega = np.zeros(nsamples)
# Create Omega:
if nsamples % 2 == 0:
nh = int(nsamples/2)
Omega[:nh] = domega * np.array(range(0, nh))
Omega[nh:] = domega * np.array(range(-nh-1, -1))
else:
nh = int((nsamples - 1)/2)
Omega[:nh] = domega * np.array(range(0, nh))
Omega[nh:] = domega * np.array(range(-nh-2, -1))
# High-pass filter
n_low = int(np.floor((2*np.pi*flow)/domega))
acchat[:n_low - 1] = 0
acchat[nsamples - n_low:] = 0
# Divide by omega
acchat[1:] = -acchat[1:] / Omega[1:]
# Inverse FFT
vel = np.imag(np.fft.ifft(acchat))
return vel
这仍然与Matlab代码略有不同。建议?
编辑: 解决方案:
def acc2velpos(acc, dt, f_low):
n = len(acc)
freq = np.fft.fftfreq(n, d=dt)
domega = (2*np.pi)/(dt*(n + 1))
omegas = 2 * np.pi * freq
omegas = omegas[1:]
# Fast Fourier Transform of Acceleration
accfft = np.array(np.fft.fft(acc, axis=0))
# High-pass filter
n_low = int(np.floor((2*np.pi*f_low)/domega))
accfft[:n_low - 1] = 0
accfft[n - n_low:] = 0
# Integrating the Fast Fourier Transform
velfft = -accfft[1:] / (omegas * 1j)
posfft = accfft[1:] / ((omegas * 1j) ** 2)
velfft = np.array([0] + list(velfft))
posfft = np.array([0] + list(posfft))
# Inverse Fast Fourier Transform back to time domain
vel = np.real(np.fft.ifft(velfft, axis=0))
pos = np.real(np.fft.ifft(posfft, axis=0))
return vel, pos
在Python脚本中实现高通滤波器解决了这个问题。
答案 0 :(得分:3)
看起来你在matlab代码中有一个高通滤波器,而不是在python代码中。考虑到python和matlab位置结果之间的差异,这是有道理的。
您的python位置波似乎以低频率上下振荡,表明频域中的某些低频分量未被滤除。 matlab代码中的高通滤波器删除了低频分量。