ciaproc.m
来自「rang doppler imaging and motion compensa」· M 代码 · 共 27 行
M
27 行
function [startmat, endmat] = CIAproc(data,amplen,thre,sizemat,SNR); %
% Decide final starting and ending points of a segment based on
% the information supplied by the amplitude information using CIA
% function and the phase information using CIAphase for the
% complex image analysis.
%
[mm nn] = size(data); startmat=[]; endmat=[]; for bcount=1:mm vec727fd=data(bcount,:); tw3=abs(vec727fd); delphi=1/sqrt(2*SNR(mm));%% CIA [startp,endp]=CIA(tw3,amplen,thre); [startpp,endpp]=CIAphase(vec727fd,startp,endp,pi/2,2.5*delphi); makestart=makevec(startpp,sizemat); makeend=makevec(endpp,sizemat); startmat=[startmat;makestart]; endmat=[endmat;makeend]; end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?