function y=xwin_one(x,a,fs)
x1=wavread('E:\gzan1.wav');
x1=filter([1-0.9375],1,x1);
N=120;step=10;
x2=enframe(x1,boxcar(N),step);
x=x2(1,:);
L=length(x);
m1=max(x);n1=min(x);
m=m1(1);n=n1(1);
for i=1:L %归一化取出的x 样点
x(i)=x(i)/m;
end
figure(1);
subplot(2,1,a);plot(x,'k');title('矩形窗语音波形');xlabel('样点数');ylabe(l '幅度');
%进行x 的中心消波和绘图