normalize.m

来自「rang doppler imaging and motion compensa」· M 代码 · 共 19 行

M
19
字号
function [y, factor] = normalize(x)
%
% Normalize to make the sum of magnitude in a burst 
% to be one in spatial domain.
%   [m n] = size(x);   leng=length(x);   if m ~= leng      temp=m;      m = n;      n = temp ;      x = x.';   end   factor=sum(x);   sumx=ones(m,1)*factor;   y=x./sumx;

⌨️ 快捷键说明

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