File:Radar signal sequence.pdf

Summary

Description
English: Radar signal sequence .
Italiano: Sequenza segnale radar .
Date
Source Own work
Author Luca Ghio
Permission
(Reusing this file)
Public domain This work has been released into the public domain by its author, Luca Ghio. This applies worldwide.
In some countries this may not be legally possible; if so:
Luca Ghio grants anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.
Category:Self-published work#Radar%20signal%20sequence.pdfCategory:PD-self#Radar%20signal%20sequence.pdf
PDF development
InfoField
gnuplot source
InfoField
click to expand
pkg load signal
close all
#clear all
n=1000;
x=zeros(1,n);
x(1:100)=ones(1,100);
figure
set(gca,'FontSize',14)
stem(x, 'k')
xlabel('n')
title('x(n)')
axis([0 1000 -0.5 1.5])
grid on
D=200;
x_shift=[zeros(1,D) x(1:end-D)];
g=0.05*randn(1,n);
alpha=0.3;
r=alpha*x_shift+g;
z=xcorr(r,x);
figure
set(gca,'FontSize',14)
stem(r,'k')
xlabel('n')
title('r(n)')
axis([0 1000 -0.5 1.5])
grid on
figure
set(gca,'FontSize',14)
stem([-n+1:n-1],z,'k')
xlabel('n')
title('z(n)')
grid on
This image could be re-created using vector graphics as an SVG file. This has several advantages; see Commons:Media for cleanup for more information. If an SVG form of this image is available, please upload it and afterwards replace this template with {{vector version available|new image name}}.
It is recommended to name the SVG file “Radar signal sequence.svg”—then the template Vector version available (or Vva) does not need the new image name parameter.
Category:Other images that should use vector graphics#%20Radar%20signal%20sequence.pdfCategory:PDF that should be converted to SVG Category:Images with Octave source code Category:Created with GNU Octave Category:Plots of discrete time Category:Radar signal processing
Category:Created with GNU Octave Category:Images with Octave source code Category:Other images that should use vector graphics Category:PD-self Category:PDF that should be converted to SVG Category:PNG created with Octave Category:Plots of discrete time Category:Radar signal processing Category:Self-published work