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

📄 shiftzero.m

📁 rang doppler imaging and motion compensation中的源代码
💻 M
字号:
function [centerdata,index] = shiftzero(data,freq)
%	
%	This function moves the radar image to the center of
%	the imaging window.
%
%	data: Radar signature from the target.
%	freq: transmitted radar signature.
%   [m,n]=size(freq);   if m == 1      m = n;      n = 1;      freq = freq(:);   end      [m,n] = size(data);    hm=m/2;   index = (freq(hm)+freq(hm+1))/2;           modfreq = tranfreqm(m,n);   mulfreq = exp(-j*index*modfreq);    centerdata = data.*mulfreq;

⌨️ 快捷键说明

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