⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 viewfiltergain.m

📁 Yaakov Bar-Shalom, X.-Rong Li,Thiagalingam Kirubarajan - Estimation with Applications to Tracking an
💻 M
字号:
%%% DynaEst 3.032 01/13/2000
% Copyright (c) 2000 Yaakov Bar-Shalom
%
%ViewFilterGain

ViewStatusFlag = DRAW_FILTER_GAIN ;
colordef none;
legend off;
zoom off;

gaintemp = zeros(kmax,1) ;
lastcolumn = 0 ;
if SensitivityFlag == 2
   tempx = nr ;
else
   tempx = nxf ;
end

for i=1:tempx
   for j=1:nz
      gaintemp(:) = FilterGain(i,j,:) ;
      subplot(tempx,nz,lastcolumn+j);
      plot([1:kmax],gaintemp);
      stemp = sprintf('Filter Gain (%d, %d)',i,j);
      title(stemp,'FontSize',8) ;
      % xlabel('k');
      grid on;
   end
   lastcolumn = lastcolumn+j ;
end
clear stemp lastcolumn gaintemp tempx ;   
set(view_legend_menu,'Enable','off')
set(view_grid_menu,'Enable','off')


⌨️ 快捷键说明

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