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) |
|
||
| PDF development | |||
| gnuplot source | 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: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