name 'int16' is not defined这个错误怎么解决呀
本帖最后由 hxiaoyuan 于 2023-3-22 17:29 编辑代码:
import wave
import numpy as np
import matplotlib.pyplot as plt
fw = wave.open('test.wav','r')
soundInfo = fw.readframes(-1)
soundInfo = np.fromstring(soundInfo,np,int16)
f = fw.getframerate()
fw.close()
plt.subplot(211)
plt.plot(soundInfo)
plt.ylabel('Amplitude')
plt.title('wave from and spectrogram of test.wav')
plt.subplot(212)
plt.specgram(soundInfo,Fs = f ,scale_by_freq = True,sides = 'default')
plt.ylabel('Frequency')
plt.xlabel('time(seconds)')
plt.show()
报错:
Traceback (most recent call last):
File "C:\Users\ASUS\Desktop\加油加油! !\实验\绘制语谱图\main.py", line 7, in <module>
soundInfo = np.fromstring(soundInfo,np,int16)
NameError: name 'int16' is not defined
求问有没有方法解决?
占个楼 int16没有这种用法吧? 本帖最后由 hxiaoyuan 于 2023-3-22 17:57 编辑
sfqxx 发表于 2023-3-22 17:40
int16没有这种用法吧?
应该可以吧,我搜索到了这个函数的用法,有类似这样的C:\Users\ASUS\Desktop\微信截图_20230322175318.png hxiaoyuan 发表于 2023-3-22 17:55
应该可以吧,我搜索到了这个函数的用法,有类似这样的
那是 np.int16 你把点打成逗号了
import wave
import numpy as np
import matplotlib.pyplot as plt
fw = wave.open('test.wav','r')
soundInfo = fw.readframes(-1)
soundInfo = np.fromstring(soundInfo,np.int16)
f = fw.getframerate()
fw.close()
plt.subplot(211)
plt.plot(soundInfo)
plt.ylabel('Amplitude')
plt.title('wave from and spectrogram of test.wav')
plt.subplot(212)
plt.specgram(soundInfo,Fs = f ,scale_by_freq = True,sides = 'default')
plt.ylabel('Frequency')
plt.xlabel('time(seconds)')
plt.show()
在problems里显示的是这个问题 Unresolved reference 'int16' isdkz 发表于 2023-3-22 17:58
那是 np.int16 你把点打成逗号了
是的{:5_100:} isdkz 发表于 2023-3-22 17:58
那是 np.int16 你把点打成逗号了
好奇 int16 是什么,没学过 学习 zhangjinxuan 发表于 2023-3-22 18:12
好奇 int16 是什么,没学过
16位的整数,取值范围从 -32768 到 32767 isdkz 发表于 2023-3-22 18:14
16位的整数,取值范围从 -32768 到 32767
有点像 short{:10_256:},好奇在 python 中有什么用 hxiaoyuan 发表于 2023-3-22 17:55
应该可以吧,我搜索到了这个函数的用法,有类似这样的
ok 学习
页:
[1]