MATLAB: Chirp with gaussian envelope

communication

hi all, I need to use an up chirp pulse but with Gaussian envelope. Any idea that can help me?

Best Answer

t = -1:0.01:1;
env = normpdf(t);
x = chirp(t);
y = env.*x;
Related Question