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

📄 filtindex.m

📁 rang doppler imaging and motion compensation中的源代码
💻 M
字号:
     function [center,maxsize] = filtindex(data,mul)  	  %
     % Find the center of the selected region in the
     % spatial domain.
     %
     [m,n] = size(data);     centera=[];     sizevec=[];     for num = 1:m     tema = find(data(num,:));     temb = mean(tema);     temc = size(tema,2);     centera = [centera,temb];     sizevec = [sizevec;temc];     end     center=(centera+(mul-1))/mul;     maxsize = max(sizevec/mul);     

⌨️ 快捷键说明

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