pdoapar.m

来自「阵列信号处理的工具箱」· M 代码 · 共 41 行

M
41
字号
function pdoapar(doaParam, selection, dispOpt)% *****************************************************************************%   *  DBT, A Matlab Toolbox for Radar Signal Processing  *% (c) FOA 1994-2000. See the file dbtright.m for copyright notice.%%  function pdoapar(doaParam, selection, dispOpt)%%  Presents the contents of the DoaParamT.%%  doaParam   DoaParamT or :%       Vector of DoaT%  selection   D IntVectorT   :%          or String%  dispOpt  D ?      : Display options.%%  Start        : 951220 Svante Bj鰎klund (svabj).%  Latest change: $Date: 2000/10/16 15:21:18 $ $Author: svabj $.%  $Revision: 1.8 $% *****************************************************************************if isstruct(doaParam)  chkdtype(doaParam, 'DoaParamT')  doa = doaParam.doa;  if (ismulmat(doa))    doa = getm(doa,1,':',':')';  else    %disp('Warning doa in doaParam is not a multimatrix.')  endelse  doa = doaParam;endfprintf('\nDOA:s\n')fprintf(' %g degrees\n',r2d(doa))

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?