RangeDopplerResponse 在 Python 中翻转

RangeDopplerResponse flipped in Python

提问人:stressedutstudent 提问时间:11/16/2023 最后编辑:egleasestressedutstudent 更新时间:11/16/2023 访问量:21

问:

我正在尝试使用 Matlab 引擎创建 RangeDopplerResponse 图,如下所示:

rngdopresp = eng.phased.RangeDopplerResponse('DopplerFFTLength',2048, 'DopplerOutput', 'Speed', 'RangeMethod', 'FFT', 'DechirpInput', True, 'SampleRate', 150000.0)
eng.plotResponse(rngdopresp, v, v_ref_p)`
from the matlab snippet:
`rngdopresp = phased.RangeDopplerResponse('RangeMethod', 'FFT', 'DechirpInput', true, 'SampleRate', 150000);plotResponse(rngdopresp,v, v_ref_p);

然而,输出图准确地显示了 MATLAB 的输出,尽管在两个平台上调用相同的函数,但还是横向旋转了 90 度。

在这里,您可以看到两个不同的输出: MATLAB:在此处输入图像描述 python:在此处输入图像描述 我该如何解决这个问题?

python matlab 信号处理 matlab-图

评论


答: 暂无答案