plot_mvdr.m
上传用户:kendun0711
上传日期:2007-06-03
资源大小:32k
文件大小:0k
源码类别:

技术管理

开发平台:

Matlab

  1. function plot_mvdr(name)
  2. eval(['load  ' name]);
  3. % test vectors for spatially sampled response
  4. W_H     = conj(W(Ndata, :));
  5. st      = -1 : 0.025 : 1;
  6. est     = exp(-j*pi*[0:(rp.p-1)]'*st);
  7. S   = ones(81,1);
  8. qq1 = pi*sin(st);
  9. for n=[1 2 3 4], 
  10.    S(:,n+1)=exp(-j*n*qq1'); 
  11. end
  12. plot(st,10*log10(abs(W_H*S').^2),'k')
  13. xlabel('sin theta')
  14. ylabel('Amplitude response, dB')