AttributeError: type object 'fft' has no attribute 'fft_vcc'
AttributeError: type object 'fft' has no attribute 'fft_vcc'
我尝试了下面显示的流程图,但出现以下错误并且无法 运行 它。
可能是什么原因?谢谢
Executing: /usr/bin/python3 -u /home/nomo/fft.py
Traceback (most recent call last):
File "/home/nomo/fft.py", line 230, in <module>
main()
File "/home/nomo/fft.py", line 208, in main
tb = top_block_cls()
File "/home/nomo/fft.py", line 159, in __init__
self.fft_vxx_0 = fft.fft_vcc(fftsize, True, window.blackmanharris(1024), True, 1)
AttributeError: type object 'fft' has no attribute 'fft_vcc'
您遇到名称冲突:您尝试使用 fft
模块(由 from gnuradio import fft
在您的 python 中导入,但您也声明了此模块的 ID流程图 class 为 fft
。因此,Python 选错了。
在您的 Options
块中选择任何其他 Id
,错误就会消失。
我尝试了下面显示的流程图,但出现以下错误并且无法 运行 它。 可能是什么原因?谢谢
Executing: /usr/bin/python3 -u /home/nomo/fft.py
Traceback (most recent call last):
File "/home/nomo/fft.py", line 230, in <module>
main()
File "/home/nomo/fft.py", line 208, in main
tb = top_block_cls()
File "/home/nomo/fft.py", line 159, in __init__
self.fft_vxx_0 = fft.fft_vcc(fftsize, True, window.blackmanharris(1024), True, 1)
AttributeError: type object 'fft' has no attribute 'fft_vcc'
您遇到名称冲突:您尝试使用 fft
模块(由 from gnuradio import fft
在您的 python 中导入,但您也声明了此模块的 ID流程图 class 为 fft
。因此,Python 选错了。
在您的 Options
块中选择任何其他 Id
,错误就会消失。