📄 get_monopulse.m
字号:
%% A: pulse amplitude [V]% chip_span: %how many chips before and after% alpha: determines the pulse width% TC% samples_per_chip%function [monopulse,t] = get_monopulse(A,chip_span,alpha,TC,samples_per_chip)%pulse shaping%this is needed if the pulse shape is not exactly zero outside the%boundaries of one chip, 0.5 = the pulse shape has a duration of exactly%one chip, nothing will be cut out later.smp = 2*chip_span*samples_per_chip+1; % number of samplesTmin = -chip_span * TC; % Lower time limitTmax = chip_span * TC; % Upper time limitt=linspace(Tmin,Tmax,smp); % Inizialization of the % time axismonopulse=gaussian_pulse(A,t,alpha); %get the monopulse%monopulse = monopulse./norm(monopulse); %normalize it
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -