shiftzero.m
来自「rang doppler imaging and motion compensa」· M 代码 · 共 24 行
M
24 行
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 + =
减小字号Ctrl + -
显示快捷键?