我正在尝试使用'matplotlib.pyplot.stem'函数生成一个Stem图。该代码有效,但处理时间超过5分钟。
我在Matlab中有一个类似的代码,几乎可以立即生成相同的输出数据。
有没有办法优化这段代码的速度或我可以使用的更好的功能?
干线图'H'和'plotdata'的参数是16384 x 1数组。
def stemplot():
import numpy as np
from scipy.fftpack import fft
import matplotlib.pyplot as plt
################################################
# Code to set up the plot data
N=2048
dr = 100
k = np.arange(0,N)
cos = np.cos
pi = np.pi
w = 1-1.932617*cos(2*pi*k/(N-1))+1.286133*cos(4*pi*k/(N-1))-0.387695*cos(6*pi*k/(N-1))+0.0322227*cos(8*pi*k/(N-1))
y = np.concatenate([w, np.zeros((7*N))])
H = abs(fft(y, axis = 0))
H = np.fft.fftshift(H)
H = H/max(H)
H = 20*np.log10(H)
H = dr+H
H[H < 0] = 0 # Set all negative values in dr+H to 0
plotdata = ((np.arange(1,(8*N)+1,1))-1-4*N)/8
#################################################
# Plotting Code
plt.figure
plt.stem(plotdata,H,markerfmt = " ")
plt.axis([(-4*N)/8, (4*N)/8, 0, dr])
plt.grid()
plt.ylabel('decibels')
plt.xlabel('DFT bins')
plt.title('Frequency response (Flat top)')
plt.show()
return
这里也是Matlab代码供参考:
N=2048;
dr = 100;
k=0:N-1
w = 1 - 1.932617*cos(2*pi*k/(N-1)) + 1.286133*cos(4*pi*k/(N-1)) -0.387695*cos(6*pi*k/(N-1)) +0.0322227*cos(8*pi*k/(N-1));
H = abs(fft([w zeros(1,7*N)]));
H = fftshift(H);
H = H/max(H);
H = 20*log10(H);
H = max(0,dr+H); % Sets negative numbers in dr+H to 0
figure
stem(([1:(8*N)]-1-4*N)/8,H,'-');
set(findobj('Type','line'),'Marker','none','Color',[.871 .49 0])
xlim([-4*N 4*N]/8)
ylim([0 dr])
set(gca,'YTickLabel','-100|-90|-80|-70|-60|-50|-40|-30|-20|-10|0')
grid on
ylabel('decibels')
xlabel('DFT bins')
title('Frequency response (Flat top)')
答案 0 :(得分:3)
您可以使用ax.vlines
以所需格式模拟干线图。写一个小函数,
def make_stem(ax, x, y, **kwargs):
ax.axhline(x[0],x[-1],0, color='r')
ax.vlines(x, 0, y, color='b')
ax.set_ylim([1.05*y.min(), 1.05*y.max()])
然后更改示例中的相关行,如下所示:
# Plotting Code
## plt.figure
## plt.stem(plotdata,H,markerfmt = " ")
## plt.axis([(-4*N)/8, (4*N)/8, 0, dr])
fig, ax = plt.subplots()
make_stem(ax, plotdata, H)
或多或少立即生成情节。但是,我不知道这是否比@ImportanceOfBeingErnest的答案更快或更慢。
答案 1 :(得分:2)
这里似乎不需要stem
图,因为标记无论如何都是不可能的,并且由于点数很多而无法理解。
相反,使用LineCollection可能有意义。无论如何,这是how matplotlib will do it in a future version - 请参阅this PR。对我来说,下面的代码在0.25秒内运行。 (由于行数很多,这仍然比使用plot
略长。)
import numpy as np
from scipy.fftpack import fft
import matplotlib.pyplot as plt
import time
import matplotlib.collections as mcoll
N=2048
k = np.arange(0,N)
dr = 100
cos = np.cos
pi = np.pi
w = 1-1.932617*cos(2*pi*k/(N-1))+1.286133*cos(4*pi*k/(N-1))-0.387695*cos(6*pi*k/(N-1))+0.0322227*cos(8*pi*k/(N-1))
y = np.concatenate([w, np.zeros((7*N))])
H = abs(fft(y, axis = 0))
H = np.fft.fftshift(H)
H = H/max(H)
H = 20*np.log10(H)
H = dr+H
H[H < 0] = 0 # Set all negative values in dr+H to 0
plotdata = ((np.arange(1,(8*N)+1,1))-1-4*N)/8
lines = []
for thisx, thisy in zip(plotdata,H):
lines.append(((thisx, 0), (thisx, thisy)))
stemlines = mcoll.LineCollection(lines, linestyles="-",
colors="C0", label='_nolegend_')
plt.gca().add_collection(stemlines)
plt.axis([(-4*N)/8, (4*N)/8, 0, dr])
plt.grid()
plt.ylabel('decibels')
plt.xlabel('DFT bins')
plt.title('Frequency response (Flat top)')
plt.show()