Basic Signals and Systems

Total Page:16

File Type:pdf, Size:1020Kb

Basic Signals and Systems Chapter 1 Basic Signals and Systems January 17, 2007 Overview Matlab is an ideal software tool for studying Digital Signal Processing. Its language has many functions that are commonly needed to create and process signals. The plotting capa- bility of Matlab makes it possible to view the results of processing and gain understanding into complicated operations. In this first chapter, we present some of the basics of DSP in the context of Matlab. At this point, some of the exercises are extremely simple so that familiarity with the Matlab environment can be acquired. Generating and plotting signals is treated first, followed by the operation of difference equations as the basic linear time-invariant system. An important part of this chapter is understanding the role of the numerical computation of the Fourier transform (DTFT). Since Matlab is a numerical environment we must manipulate samples of the Fourier transform, rather than formulas. We also examine the signal property called group delay. Finally, the sampling process is studied to show the effects of aliasing, and different reconstruction schemes. There many excellent textbooks that provide background reading for the projects in this chapter. We mention as examples the books by Jackson (1986), McGillem and Cooper (1974), Oppenheim and Schafer (1989), Oppenheim and Willsky (1983), and Proakis and Manolakis (1988). In each of these sections we have indicated specific background reading from Oppenheim and Schafer (1989) but similar background reading can be found in most other texts on Digital Signal Processing. 1 Computer-Based Exercises for Signal Processing Signals This material was prepared by and is the property of CASPER, an informal working group of faculty from a number of universities. The working group consists of Professors C. Sidney Burrus, James H. McClellan, Alan V. Oppenheim, Thomas W. Parks, Ronald W. Schafer, and Hans W. Sch¨ußler. This material should not be reproduced or distributed without written permission. Signals continued 3 Signals Overview The basic signals used often in digital signal processing are the unit impulse signal δ[n], ex- ponentials of the form anu[n], sine waves, and their generalization to complex exponentials. The following projects are directed at the generation and representation of these signals in Matlab. Since the only data type in Matlab is the M N matrix, signals must be × represented as vectors: either M 1 matrices if column vectors, or 1 N matrices if row vec- × × tors. In Matlab all signals must be finite in length. This contrasts sharply with analytical problem solving where a mathematical formula can be used to represent an infinite-length signal, e.g., a decaying exponential, anu[n]. A second issue is the indexing domain associated with a signal vector. Matlab assumes by default that a vector is indexed from 1 to N, the vector length. In contrast, a signal vector is often the result of sampling a signal over some domain where the indexing runs from 0 to N 1; or, perhaps, the sampling starts at some arbitrary index that is negative, − say from N. The information about the sampling domain cannot be attached to the − signal vector containing the signal values. Instead the user is forced to keep track of this information separately. Usually this is no big problem until it comes time to plot the signal, in which case the horizontal axis must be labelled properly. A final point is the useage of Matlab’s vector notation to generate signals. A signficant power of the Matlab environment is its high-level notation for vector manipulation; for loops are almost always unnecessary. When creating signals such as a sine wave, it is best to apply the sin function to a vector argument, consisting of all the time samples. In the following projects, we will treat the common signals encountered in digital signal processing: impulses, impulse trains, exponentials, and sinusoids. Background Reading Oppenheim and Schafer (1989), Chapter 2, sections 2.0 and 2.1. Project 1: Basic Signals Project Description This project concentrates on the issues involved with generation of some basic discrete-time signals in Matlab. Much of the work centers on using internal Matlab vector routines for signal generation. In addition, a sample Matlab function will be implemented. Hints Plotting discrete-time signals is done with the comb function in Matlab. The following Matlab code will create 31 points of a discrete-time sinusoid. nn = 0:30; %-- vector of time indices sinus = sin(nn/2+1); Notice that the n = 0 index must be referred to as nn(1), due to Matlab’s indexing scheme; likewise, sinus(1) is the first value in the sinusoid. When plotting the sine wave we would use the comb function which produces the discrete-time signal plot commonly seen 4 Signals continued SINE WAVE 1 o o o o o o o 0.8 o o o o 0.6 o 0.4 o o 0.2 o o o 0 o o -0.2 o o o -0.4 o o -0.6 o o -0.8 o o o -1 o o 0 5 10 15 20 25 30 TIME INDEX (n) Figure 1: Example of Plotting a discrete-time signal with comb. in DSP books, see Fig. 1: comb( nn, sinus ); The first vector argument must be given in order to get the correct n-axis. For comparison, try comb(sinus) to see the default labelling. Exercise 1.1: Basic Signals—Impulses The simplest signal is the (shifted) unit impulse signal: 1 n = n δ[n n ]= 0 (1.1) − 0 0 n = n ( 6 0 In order to create an impulse in Matlab, we must decide how much of the signal is of interest. If the impulse δ[n] is going to be used to drive a causal LTI system, we might want to see the L points from n = 0 to n = L 1. If we choose L = 31, the following Matlab − code will create an “impulse” L = 31; nn = 0:(L-1); imp = zeros(L,1); imp(1) = 1; Notice that the n = 0 index must be referred to as imp(1), due to Matlab’s indexing scheme. Signals continued 5 (a) Generate and plot the following sequences. In each case, the horizontal (n) axis should extend only over the range indicated and should be labelled accordingly. Each sequence should be displayed as a discrete-time signal using comb. x [n]= .9δ[n 5] 1 n 20 1 − ≤ ≤ x [n]= .8δ[n] 15 n 15 2 − ≤ ≤ x [n] = 1.5δ[n 333] 300 n 350 3 − ≤ ≤ x [n] = 4.5δ[n + 7] 10 n 0 4 − ≤ ≤ (b) The shifted impulses, δ[n n ], can be used to build a weighted impulse train, with − 0 period P and total length MP : M 1 − s[n]= A δ[n ℓP ] (1.2) ℓ − Xℓ=0 The weights are Aℓ; if they are all the same, the impulse train is periodic with period P . Generate and plot a periodic impulse train whose period is P = 5, and whose length is 50. Start the signal at n = 0. Try to use one or two vector operations rather than a for loop to set the impulse locations. How many impulses are contained within the finite-length signal? (c) The following Matlab code will produce a repetitive signal in the vector x: x = [0;1;1;0;0;0] * ones(1,7); x = x(:); size(x) %<--- return the signal length Plot x in order to visualize its form; then give a mathematical formula similar to (1.2) to describe this signal. Exercise 1.2: Basic Signals—Sinusoids Another very basic signal is the cosine wave. In general, it takes three parameters to completely describe a real sinusoidal signal: amplitude (A), frequency (ω0), and phase (φ). x[n]= A cos(ω0n + φ) (1.3) (a) Generate and plot each of the following sequences. Use Matlab’s vector capability to do this with one function call by taking the cosine (or sine) of a vector argument. In each case, the horizontal (n) axis should extend only over the range indicated and should be labelled accordingly. Each sequence should be displayed as a sequence using comb. x [n] = sin π n 0 n 25 1 17 ≤ ≤ x [n] = sin π n 15 n 25 2 17 − ≤ ≤ x [n] = sin(3πn + π ) 10 n 10 3 2 − ≤ ≤ x [n] = cos π n 0 n 50 4 √23 ≤ ≤ Give a simpler formula for x3[n] that does not use trignometric functions. Explain why x4[n] is not a periodic sequence. 6 Signals continued (b) Write a Matlab function that will generate a finite-length sinusoid. The function will need a total of 5 input arguments; 3 for the parameters, and 2 more to specify the first and last n index of the finite-length signal. The function should return a column vector that contains the values of the sinusoid. Test this function by plotting the results for various choices of the input parameters. In particular, show how to generate the signal 2 sin(πn/11) for 20 n 20. − ≤ ≤ (c) Modification: Write the function to return two arguments: a vector of indices over the range of n, as well as the values of the signal. Exercise 1.3: Sampled Sinusoids Often a discrete-time signal is produced by sampling a continuous-time signal such as a constant frequency sine wave. The interrelationship between the continuous-time frequency and the sampling frequency is the main point of the Nyquist-Shannon Sampling Theorem, which requires that the sampling frequency be at least twice the highest frequency in the signal for perfect reconstruction. In general, a continuous-time sinusoid is given by the following mathematical formula: s(t)= A cos(2πf0t + φ) (1.4) where A is the amplitude, f0 is the frequency in Hertz, and φ is the initial phase.
Recommended publications
  • Introduction to Radar Part I
    1 . Introduction to Radar Part I Scriptum of a lecture at the Ruhr-UniversitÄatBochum Dr.-Ing. Joachim H.G. Ender Honorary Professor of the Ruhr-University Bochum Head of the Fraunhofer-Institute for High Frequency Physics and Radar Techniques FHR Neuenahrer Str. 20, 53343 Wachtberg, Phone 0228-9435-226, Fax 0228-9435-627 E-Mail: [email protected] Copyright remarks This document is dedicated exclusively to purposes of edu- cation at the Ruhr-University Bochum, the University of Siegen, the RWTH Aachen and the Fraunhofer-Institute FHR. No part of this document may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without the prior written consent of the author. 2 Contents 1 Radar fundamentals 9 1.1 The nature of radar . 9 1.2 Coherent radar . 12 1.2.1 Quadrature modulation and demodulation . 12 1.2.2 A generic coherent radar . 14 1.2.3 Optimum receive ¯lter . 15 1.2.4 The point spread function . 19 1.2.5 Two time scales for pulse radar . 20 1.3 Doppler e®ect . 21 1.4 De¯nitions of resolution . 24 1.5 Pulse compression . 26 1.5.1 The idea of pulse compression . 26 1.5.2 The chirp waveform, anatomy of a chirp I . 27 1.5.3 Spatial interpretation of the radar signal and the receive ¯lter 28 1.5.4 Inverse and robust ¯ltering . 30 1.5.5 Range processing and the normal form . 32 1.5.6 The de-ramping technique . 33 1.6 Range-Doppler processing .
    [Show full text]
  • Design of a Dual Band Local Positioning System
    Technische Universität Dresden Design of a Dual Band Local Positioning System Niko Joram der Fakultät Elektrotechnik und Informationstechnik der Technischen Universität Dresden zur Erlangung des akademischen Grades Doktoringenieur (Dr.-Ing.) genehmigte Dissertation Vorsitzender: Prof. Dr. techn. Klaus Janschek Gutachter: Prof. Dr. sc. techn. Frank Ellinger Prof. Dr. sc. techn. Jan Hesselbarth Tag der Einreichung: 30. Januar 2015 Tag der Verteidigung: 11. September 2015 Danksagung An dieser Stelle möchte ich mich bei allen Personen bedanken, die diese Arbeit in den letzten Jahren unterstützt haben. Mein besonderer Dank gilt Prof. Dr. sc. techn. Frank Ellinger, der mich zur Arbeit auf dem Gebiet der integrierten Hochfrequenzschaltungen motiviert hat und es mir ermöglicht hat, meine Dissertation an seinem Lehrstuhl zu bearbeiten. Sehr verbunden bin ich meinen Mitstreitern Jens Wagner und Belal Al-Qudsi, die sich stets Zeit für umfangreiche Fachdiskussionen genommen haben und mich bei allen wissenschaftlichen, technischen und administrativen Belangen im Projekt unschätzbar unterstützt haben. Markus Schulz, Elena Sobotta, Axel Strobel und Robert Wolf, meinen Kollegen im Büro, sowie Bastian Lindner, Anja Muthmann, Stefan Schumann und Uwe Mayer danke ich für das kreative Arbeitsklima und die vielen aufschlussreichen fachlichen und privaten Gespräche. Ich danke Tom Drechsel, Mohammed El-Shennawy, Marco Gunia und Prof. Dr. Udo Jörges für die aufmerksame Durchsicht der Arbeit und die hilfreichen Kom- mentare und Diskussionen, die zur Verbesserung
    [Show full text]
  • High-Resolution Time-Frequency Analysis of Neurovascular Responses to Ischemic Challenges Frederick Romberg
    Yale University EliScholar – A Digital Platform for Scholarly Publishing at Yale Yale Medicine Thesis Digital Library School of Medicine January 2012 High-Resolution Time-Frequency Analysis Of Neurovascular Responses To Ischemic Challenges Frederick Romberg Follow this and additional works at: http://elischolar.library.yale.edu/ymtdl Recommended Citation Romberg, Frederick, "High-Resolution Time-Frequency Analysis Of Neurovascular Responses To Ischemic Challenges" (2012). Yale Medicine Thesis Digital Library. 1754. http://elischolar.library.yale.edu/ymtdl/1754 This Open Access Thesis is brought to you for free and open access by the School of Medicine at EliScholar – A Digital Platform for Scholarly Publishing at Yale. It has been accepted for inclusion in Yale Medicine Thesis Digital Library by an authorized administrator of EliScholar – A Digital Platform for Scholarly Publishing at Yale. For more information, please contact [email protected]. High-Resolution Time-Frequency Analysis of Neurovascular Responses to Ischemic Challenges A Thesis Submitted to the Yale University School of Medicine in Partial Fulfillment of the Requirements for the Degree of Doctor of Medicine by Frederick William Romberg 2012 HIGH-RESOLUTION TIME-FREQUENCY ANALYSIS OF NEUROVASCULAR RESPONSES TO ISCHEMIC CHALLENGES Frederick W. Romberg1, Christopher G. Scully2, Tyler Silverman1, Ki H. Chon2, Kirk H. Shelley1, Nina Stachenfeld3, and David G. Silverman1 1Department of Anesthesiology, Yale University, School of Medicine, New Haven, CT 2Department of Biomedical
    [Show full text]
  • Investigation of Non-Linear Chirp Coding for Improved Second Harmonic Pulse Compression
    This is a repository copy of Investigation of Non-linear Chirp Coding for Improved Second Harmonic Pulse Compression. White Rose Research Online URL for this paper: http://eprints.whiterose.ac.uk/116334/ Version: Accepted Version Article: Arif, M, Ali, MA, Shaikh, MM et al. (1 more author) (2017) Investigation of Non-linear Chirp Coding for Improved Second Harmonic Pulse Compression. Ultrasound in Medicine & Biology, 43 (8). pp. 1690-1702. ISSN 0301-5629 https://doi.org/10.1016/j.ultrasmedbio.2017.03.005 © 2017 World Federation for Ultrasound in Medicine & Biology. This manuscript version is made available under the CC-BY-NC-ND 4.0 license http://creativecommons.org/licenses/by-nc-nd/4.0/ Reuse Items deposited in White Rose Research Online are protected by copyright, with all rights reserved unless indicated otherwise. They may be downloaded and/or printed for private study, or other acts as permitted by national copyright laws. The publisher or other rights holders may allow further reproduction and re-use of the full text version. This is indicated by the licence information on the White Rose Research Online record for the item. Takedown If you consider content in White Rose Research Online to be in breach of UK law, please notify us by emailing [email protected] including the URL of the record and the reason for the withdrawal request. [email protected] https://eprints.whiterose.ac.uk/ Investigation of Nonlinear Chirp Coding for Improved Second Harmonic Pulse Compression Muhammad Arifa,∗, Muhammad Asim Alib, Muhammad Mujtaba
    [Show full text]
  • Sidelobe Suppression in Chirp Radar Systems
    New Jersey Institute of Technology Digital Commons @ NJIT Dissertations Electronic Theses and Dissertations Spring 5-31-1971 Sidelobe suppression in chirp radar systems Stephen N. Honickman New Jersey Institute of Technology Follow this and additional works at: https://digitalcommons.njit.edu/dissertations Part of the Electrical and Electronics Commons Recommended Citation Honickman, Stephen N., "Sidelobe suppression in chirp radar systems" (1971). Dissertations. 1353. https://digitalcommons.njit.edu/dissertations/1353 This Dissertation is brought to you for free and open access by the Electronic Theses and Dissertations at Digital Commons @ NJIT. It has been accepted for inclusion in Dissertations by an authorized administrator of Digital Commons @ NJIT. For more information, please contact [email protected]. Copyright Warning & Restrictions The copyright law of the United States (Title 17, United States Code) governs the making of photocopies or other reproductions of copyrighted material. Under certain conditions specified in the law, libraries and archives are authorized to furnish a photocopy or other reproduction. One of these specified conditions is that the photocopy or reproduction is not to be “used for any purpose other than private study, scholarship, or research.” If a, user makes a request for, or later uses, a photocopy or reproduction for purposes in excess of “fair use” that user may be liable for copyright infringement, This institution reserves the right to refuse to accept a copying order if, in its judgment,
    [Show full text]
  • Orthogonal Frequency Division Multiplexing Multiple-Input Multiple-Output Automotive Radar with Novel Signal Processing Algorithms
    Orthogonal Frequency Division Multiplexing Multiple-Input Multiple-Output Automotive Radar with Novel Signal Processing Algorithms von der Fakultät Informatik, Elektrotechnik und Informationstechnik der Universität Stuttgart zur Erlangung der Würde eines Doktor-Ingenieurs (Dr.-Ing.) genehmigte Abhandlung vorgelegt von Gor Hakobyan aus Jerewan, Armenien Hauptberichter: Prof. Dr.-Ing. Bin Yang Mitberichter: Prof. Dr. Friedrich K. Jondral Tag der mündlichen Prüfung: 07.02.2018 Institut für Signalverarbeitung und Systemtheorie der Universität Stuttgart 2018 – 3 – Vorwort Die vorliegende Arbeit entstand während meiner Zeit als Doktorand bei der zentralen Forschung der Robert Bosch GmbH in Kooperation mit der Universität Stuttgart. Mein besonderer Dank gilt Prof. Bin Yang, dem Leiter des Instituts für Signalverarbeitung und Systemtheorie an der Universität Stuttgart für die Gelegenheit, unter seiner Betreuung zu promovieren. Insbesondere möchte ich mich für das Vertrauen, die stets hervorragende Betreuung, die Freiheit, eigene Wege in Forschung zu gehen, sowie kurzfristige und sorgfältige Korrekturen meiner Veröffentlichungen und der Dissertation recht herzlich bedanken. Prof. Friedrich Jondral vom Institut für Nachrichtentechnik des Karlsruher Instituts für Technologie danke ich herzlich für die Übernahme des Mitberichts. Ferner möchte ich mich bei den Mitarbeitern der Robert Bosch GmbH und des Instituts für Signalverarbeitung und Systemtheorie bedanken, die zur Entstehung dieser Arbeit beigetragen haben. Insbesondere geht mein Dank an Herrn
    [Show full text]
  • Spectrum Analysis Considerations for Radar Chirp Waveform Spectral
    This paper was submitted to and will appear in the IEEE Transactions on Electromagnetic Compatibility, Vol. 56, No. 3, June 2014. IEEE Transactions on Electromagnetic Compatibility are Copyright © IEEE. Spectrum Analysis Considerations for Radar Chirp Waveform Spectral Compliance Measurements Charles Baylis, Member, IEEE, Josh Martin, Member, IEEE, Matthew Moldovan, Member, IEEE, Robert J. Marks, II, Fellow, IEEE, Lawrence Cohen, Member, IEEE, Jean de Graaf, Member, IEEE, Robert Johnk, Senior Member, IEEE, and Frank Sanders, Member, IEEE Abstract—The measurement of a radar chirp waveform is crit- settings for the measurement of emissions [3]. The ITU Ra- ical to assessing its spectral compliance. The Fourier transform dio Regulations provide the spectral limitations of transmitted for a linear frequency-modulated chirp is a sequence of frequency- radio signals [4]. In addition, individual nations have regula- domain impulse functions. Because a spectrum analyzer measures the waveform with a finite-bandwidth intermediate-frequency (IF) tory agencies that often expound upon the ITU standards for filter, the bandwidth of this filter is critical to the power level and spectrum regulation. In U.S., the National Telecommunications shape of the reported spectrum. Measurement results are presented and Information Administration (NTIA) sets guidelines for the that show the effects of resolution bandwidth and frequency sam- spectrum properties in the radar spectrum emissions criteria pling interval on the measured spectrum and its reported shape. (RSEC) [5]. In addition to the RSEC, the NTIA has released The objective of the measurement is to align the shape of the mea- sured spectrum with the true shape of the signal spectrum.
    [Show full text]
  • A Novel OFDM Chirp Waveform Scheme for Use of Multiple Transmitters In
    568 IEEE GEOSCIENCE AND REMOTE SENSING LETTERS, VOL. 10, NO. 3, MAY 2013 A Novel OFDM Chirp Waveform Scheme for Use of Multiple Transmitters in SAR Jung-Hyo Kim, Member, IEEE, Marwan Younis, Senior Member, IEEE, Alberto Moreira, Fellow, IEEE, and Werner Wiesbeck, Fellow, IEEE Abstract—In this letter, we present a new waveform technique channel coherence bandwidth, in order to avoid the frequency- for the use of multiple transmitters in synthetic aperture radar selective channel effect [4]. The OFDM signaling is also paid (SAR) data acquisition. This approach is based on the principle of attention for SAR applications, and recently, SAR processing the orthogonal-frequency-division-multiplexing technique. Unlike techniques for OFDM waveforms were introduced in [5] and multiple subband approaches, the proposed scheme allows the generation of multiple orthogonal waveforms on common spectral [6]. A major problem of the typical OFDM signal (mainly in support and thereby enables to exploit the full bandwidth for spaceborne SAR) is the fast variation of the signal envelope. each waveform. This letter introduces the modulation and the We resolve the problem by combining the OFDM principle demodulation processing in regard to typical spaceborne SAR with chirp waveforms. Therefore, the basic idea behind the receive signals. The proposed processing techniques are verified proposed waveform scheme is to exploit both the orthogonality by a simulation for the case of pointlike targets. of subcarriers and intrinsic characteristics of traditional chirp Index Terms—Digital beamforming (DBF), multiple-input waveforms. multiple-output (MIMO) synthetic aperture radar (SAR), orthog- The importance of using chirp waveform in the proposed onal frequency division multiplexing (OFDM), orthogonal wave- scheme is emphasized in the following issues: First, one can form, SAR.
    [Show full text]
  • SIDELOBE DEDUCTION by PIECEWISE NON LINEAR FREQUENCY MODULATION WAVEFORM Djoeisac Thomas1, C
    ISSN: 2319-8753 International Journal of Innovative Research in Science, Engineering and Technology Vol. 2, Issue 3, March 2013 SIDELOBE DEDUCTION BY PIECEWISE NON LINEAR FREQUENCY MODULATION WAVEFORM DjoeIsac Thomas1, C. Kamalanathan2, Dr. S.Valarmathy3 1PG Scholar, Dept. of ECE, Bannari Amman Institute of Technology, Sathyamangalam, TamilNadu, India 2Asst. Professor (Sr. Grade), Dept. of ECE, Bannari Amman Institute of Technology,Sathyamangalam, TamilNadu, India 3Prof. & HoD, Dept. of ECE, Bannari Amman Institute of Technology, Sathyamangalam, TamilNadu, India Abstract :-The Linear Frequency Modulation (LFM) waveform is the most commonly and extensively used signal in practical radar system. This paper introduces a new scheme of Piecewise Nonlinear Frequency Modulation (PNFM) for generating good code sets. Each code set has good autocorrelation with small peak sidelobes and cross-correlation. A weighting function is usually applied in order to reduce the sidelobes. In an effort to achieve low autocorrelation sidelobe level without applying weighting function, PNFM signal has been investigated. The new class codes is shown to have good ambiguity function with the ability to tolerate a realistic range of Doppler shift. At the receiver a matched filter is used which improvement in Doppler detection with good SNR. Keywords:-Piecewise Nonlinear Frequency Modulation, LFM, Ambiguity function, Chirp code, Radar. I. INTRODUCTION Chirp system are the only spread spectrum system that do not normally employ a code sequence to control their output signal spectra. Chirp signal is generated by sliding the carrier over a given range of frequency in a linear or some other known manner during a fixed pulse period as shown in figure 1.
    [Show full text]
  • Design of Digital FMCW Chirp Synthesizer Plls Using Continuous-Time Delta-Sigma Time-To-Digital Converters
    Design of Digital FMCW Chirp Synthesizer PLLs Using Continuous-Time Delta-Sigma Time-to-Digital Converters by Daniel J. Weyer A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy (Electrical Engineering) in the University of Michigan 2018 Doctoral Committee: Professor Michael P. Flynn, Chair Professor Zhong He Associate Professor David D. Wentzloff Associate Professor Zhengya Zhang Daniel J. Weyer [email protected] ORCID iD: 0000-0002-8355-9402 © Daniel J. Weyer 2018 TABLE OF CONTENTS LIST OF FIGURES ..................................................................................................................v LIST OF TABLES .................................................................................................................. ix ABSTRACT...............................................................................................................................x CHAPTER 1 Introduction ........................................................................................................1 1.1 FMCW Radar ............................................................................................................1 1.2 PLL Design for FMCW Chirp Synthesis ....................................................................5 1.3 Research Contributions ..............................................................................................7 1.4 Outline of the Dissertation .........................................................................................9 CHAPTER
    [Show full text]
  • Sistema Plc De Banda Angosta Para La Caracterización De La Impedancia De La Red Eléctrica
    SISTEMA PLC DE BANDA ANGOSTA PARA LA CARACTERIZACIÓN DE LA IMPEDANCIA DE LA RED ELÉCTRICA Adrián de la Fuente El presente Trabajo de Tesis ha sido desarrollado en el Laboratorio de Instrumentación y Control de la Universidad Nacional de Mar del Plata, y presentado al Departamento de Electrónica de la Facultad de Ingeniería de la Universidad Nacional de Mar del Plata el 12 de Noviembre de 2018, como requisito parcial para la obtención del título de Ingeniero Electrónico. Director: Dr. Ing. Matías Hadad Codirector: Dr. Ing. Marcos Funes RINFI se desarrolla en forma conjunta entre el INTEMA y la Biblioteca de la Facultad de Ingeniería de la Universidad Nacional de Mar del Plata. Tiene como objetivo recopilar, organizar, gestionar, difundir y preservar documentos digitales en Ingeniería, Ciencia y Tecnología de Materiales y Ciencias Afines. A través del Acceso Abierto, se pretende aumentar la visibilidad y el impacto de los resultados de la investigación, asumiendo las políticas y cumpliendo con los protocolos y estándares internacionales para la interoperabilidad entre repositorios Esta obra está bajo una Licencia Creative Commons Atribución- NoComercial-CompartirIgual 4.0 Internacional. Índice general Agradecimientos .......................................................................................................................... 8 Resumen ...................................................................................................................................... 9 Nomenclatura ...........................................................................................................................
    [Show full text]
  • Sparse Detection in the Chirplet Transform: Application to FMCW Radar Signals Fabien Millioz, Michael Davies
    Sparse Detection in the Chirplet Transform: Application to FMCW Radar Signals Fabien Millioz, Michael Davies To cite this version: Fabien Millioz, Michael Davies. Sparse Detection in the Chirplet Transform: Application to FMCW Radar Signals. IEEE Transactions on Signal Processing, Institute of Electrical and Electronics Engi- neers, 2012, 60 (6), pp.2800 - 2813. 10.1109/TSP.2012.2190730. hal-00714397 HAL Id: hal-00714397 https://hal.archives-ouvertes.fr/hal-00714397 Submitted on 4 Jul 2012 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. 1 Sparse detection in the chirplet transform: application to FMCW radar signals Fabien Millioz and Michael Davies Abstract—This paper aims to detect and characterise a signal by the matching-pursuit framework making it impractical for coming from Frequency Modulation Continuous Wave radars. real time deployment. Here we are interested in a minimal The radar signals are made of piecewise linear frequency computation approach. Chirplet chains [5], [6] are based on modulations. The Maximum Chirplet Transform, a simplification of the chirplet transform is proposed. A detection of the relevant the search of a single best path in the time-frequency domain, Maximum Chirplets is proposed based on iterative masking, and are applied in the low Signal-to-Noise Ratio (SNR) an iterative detection followed by window subtraction that does context of gravitational wave detection.
    [Show full text]