已阅读5页,还剩20页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Lecture 1: Signals & Systems Concepts,(1) Systems, signals, mathematical models. Continuous-time and discrete-time signals and systems. Energy and power signals. Linear systems. Examples, introduction to MatlabSpecific Objectives:Introduce, using examples: what is a signal what is a systemhow are they related,Recommended Reading Material,Signals and Systems, Oppenheim & Willsky, Chapter 1MatlabMany other introductory sources available.,What is a Signal?,A signal is a pattern of variation of some formSignals are variables that carry informationExamples of signal include:Electrical signalsVoltages and currents in a circuitAcoustic signalsAcoustic pressure (sound) over timeMechanical signalsVelocity of a car over timeVideo signalsIntensity level of a pixel (camera, video) over time,How is a Signal Represented?,Mathematically, signals are represented as a function of one or more independent variables.For instance a black & white video signal intensity(亮度) is dependent on x, y coordinates and time t f(x,y,t)On this course, we shall be exclusively concerned with signals that are a function of a single variable: time,Example: Signals in an Electrical Circuit,The signals vc and vs are patterns of variation over timeNote, we could also have considered the voltage across the resistor or the current as signals,+-,i,vc,vs,R,C,Step (signal) vs at t=1 RC = 1 First order (exponential指数) response for vc,vs, vc,t,Continuous & Discrete-Time Signals,Continuous-Time SignalsMost signals in the real world are continuous time, as the scale is infinitesimally(无穷小) fine.Eg voltage, velocity, Denote by x(t), where the time interval(间隔) may be bounded (finite) or infiniteDiscrete-Time SignalsSome real world and many digital signals are discrete time, as they are sampledE.g. pixels, daily stock price (anything that a digital computer processes)Denote by xn, where n is an integer value that varies discretelySampled continuous signal xn =x(nk) k is sample time,Many human-made Signals are DT,Why DT? Can be processed by modern digital computersand digital signal processors (DSPs).,Mandrill ExampleUnblurred Image & No Noise,Mandrill ExampleBlurred Image (bad focus),Mandrill ExampleUnblurred Image 0.1% Noise (too dark),Signal Properties,On this course, we shall be particularly interested in signals with certain properties:Periodic signals: a signal is periodic if it repeats itself after a fixed period T, i.e. x(t) = x(t+T) for all t. A sin(t) signal is periodic.Even and odd signals: a signal is even if x(-t) = x(t) (i.e. it can be reflected in the axis at zero). A signal is odd if x(-t) = -x(t). Examples are cos(t) and sin(t) signals, respectively.Exponential and sinusoidal signals: a signal is (real) exponential if it can be represented as x(t) = Ceat. A signal is (complex) exponential if it can be represented in the same form but C and a are complex numbers.Step and pulse signals: A pulse signal is one which is nearly completely zero, apart from a short spike, d(t). A step signal is zero up to a certain time, and then a constant value after that time, u(t).These properties define a large class of tractable(易处理的), useful signals and will be further considered in the coming lectures,What is a System?,Systems process input signals to produce output signalsExamples:A circuit involving a capacitor can be viewed as a system that transforms the source voltage (signal) to the voltage (signal) across the capacitorA CD player takes the signal on the CD and transforms it into a signal sent to the loud speakerA communication system is generally composed of three sub-systems, the transmitter, the channel and the receiver. The channel typically attenuates and adds noise to the transmitted signal which must be processed by the receiver,How is a System Represented?,A system takes a signal as an input and transforms it into another signalIn a very broad sense, a system can be represented as the ratio of the output signal over the input signalThat way, when we “multiply” the system by the input signal, we get the output signalThis concept will be firmed up in the coming weeks,System,Input signalx(t),Output signaly(t),Example: An Electrical Circuit System,+-,i,vc,vs,R,C,Continuous & Discrete-Time Mathematical Models of Systems,Continuous-Time SystemsMost continuous time systems represent how continuous signals are transformed via differential equations.E.g. circuit, car velocityDiscrete-Time SystemsMost discrete time systems represent how discrete signals are transformed via difference equationsE.g. bank account, discrete car velocity system,First order differential equations,First order difference equations,Properties of a System,On this course, we shall be particularly interested in signals with certain properties:Causal: a system is causal if the output at a time, only depends on input values up to that time.Linear: a system is linear if the output of the scaled sum of two input signals is the equivalent scaled sum of outputsTime-invariance: a system is time invariant if the systems output is the same, given the same input signal, regardless of time.These properties define a large class of tractable, useful systems and will be further considered in the coming lectures,How Are Signal & Systems Related (i)?,How to design a system to process a signal in particular ways?Assume a signal is represented asx(t) = d(t) + n(t)Design a system to remove the unknown “noise” component n(t), so that y(t) d(t),System?,x(t) = d(t) + n(t),y(t) d(t),How Are Signal & Systems Related (ii)?,How to design a system to extract specific pieces of information from signalsEstimate the heart rate from an electrocardiogramEstimate economic indicators (bear, bull) from stock market valuesAssume a signal is represented asx(t) = g(d(t)Design a system to “invert” the transformation g(), so that y(t) = d(t),System?,x(t) = g(d(t),y(t) = d(t) = g-1(x(t),Lecture 1: Summary,Signals and systems are pervasive in modern engineering courses:Electrical circuitsPhysical models and control systemsDigital media (music, voice, photos, video)In studying the general properties of signals and systems, you can:Design systems to remove noise/enhance measurement from audio and picture/video dataInvestigate stability of physical structuresControl the performance mechanical and electrical devices This will be the foundation for studying systems and signals as a generic subject on this course.,Introduction to Matlab,Simulink is a package that runs inside the Matlab environment.Matlab (Matrix Laboratory) is a dynamic, interpreted, environment for matrix/vector analysisUser can build programs (in .m files or at command line) C/Java-like syntaxIdeal environment for programming and analysing discrete (indexed) signals and systems,Basic Matlab Operations, % This is a comment, it starts with a “%” y = 5*3 + 22;% simple arithmetic x = 1 2 4 5 6;% create the vector “x” x1 = x.2;% square each element in x E = sum(abs(x).2);% Calculate signal energy P = E/length(x);% Calculate av signal power x2 = x(1:3);% Select first 3 elements in x z = 1+i;% Create a complex number a = real(z);% Pick off real part b = imag(z);% Pick off imaginary part plot(x);% Plot the vector as a signal t = 0:0.1:100;% Generate sampled time x3=exp(-t).*cos(t);% Generate a discrete signal plot(t, x3, x);% Plot points,Other Matlab Programming Structures,Loopsfor i=1:100 sum = sum+i;endGoes round the for loop 100 times, starting at i=1 and finishing at i=100i=1;while i=100 sum = sum+i; i = i+1;endSimilar, but uses a while loop instead of a for loop,Decisionsif i=5 a = i*2;else a = i*4; endExecutes whichever branch is appropriate depending on testswitch icase 5 a = i*2;otherwise a = i*4;endSimilar, but uses a switch,Matlab Help!,These slides have provided a rapid introduction to MatlabMastering Matlab 6, Prentice Hall, Introduction to Matlab (on-line)Lots of help availableType help in the command window or help operator. This displays the help associated with the specified operator/functionType lookfor topic to search for Matlab commands that are rela
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- GB/T 6609.5-2026氧化铝化学分析方法和物理性能测定方法第5部分:氧化钠、氧化钾含量的测定
- 计算机软硬件开发公司宣传片拍摄脚本
- 临床 拐杖使用 实操实训|手把手教学操作指南
- 临床 基因芯片检测 实操实训|手把手教学操作指南
- 临床 手术患者转运 实操实训|手把手教学操作指南
- 生产设备故障现场处置项目管理预案
- 湖南省长沙市开福区2025年四年级数学上学期期中调研模拟试题(含答案解析)
- 项目里程碑进展报备函8篇范文
- 水利行业智能水情监测与分析方案
- 新零售行业数字化门店运营与推广方案
- 2025年城市规划师《城市规划实务》练习题(含答案)
- 2026江苏无锡宜兴市和桥镇公开招聘行政村编外工作人员6人备考题库及答案详解一套
- 2026年北师大版八年级数学下册期末考试卷附答案
- 宝兴县兴产投资有限责任公司2026年度公开招聘工作人员(8人)笔试备考题库及答案详解
- 2026年公需课《人工智能赋能制造业高质量发展》试题及答案
- 时空穿越的启蒙之作:《时间机器》文学与科幻价值探索
- 2026年现代交换技术能力检测试卷带答案详解(突破训练)
- 2026江苏省中医院中药制剂研发中心招聘1人备考题库附答案详解(黄金题型)
- 湖南事业单位2026招聘公共基础知识高频考点题库含易错解析
- 2025华润电力投资有限公司新疆分公司招聘笔试历年常考点试题专练附带答案详解
- 一年级下册语文1-8单元生字词专项练习
评论
0/150
提交评论