已阅读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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025河南周口城投发展集团有限公司招聘26人笔试考试备考试题及答案解析
- 2025云南保山市瑞积中学招聘3人考试笔试模拟试题及答案解析
- 岳池县2025年社会化选聘新兴领域党建工作专员考试笔试备考试题及答案解析
- 2025云南省凤庆糖业集团营盘有限责任公司招聘2人笔试考试备考题库及答案解析
- 2025湖南君山生态渔业集团有限公司下属子公司湘北水产良种场按劳务派遣制招聘专业技术人员笔试考试参考题库及答案解析
- 2025四川藏区高速公路招聘20人笔试考试备考题库及答案解析
- 2025年西安铁路职业技术学院高层次及紧缺人才招聘(14人)考试笔试模拟试题及答案解析
- 2025福建厦门市集美区杏苑小学非在编教师招聘1人考试笔试备考题库及答案解析
- 2026广西钦州市教育系统“钦聚英才”专场集中招聘急需紧缺人才和硕士研究生骨干教师172人笔试考试备考试题及答案解析
- 2026中国储备粮管理集团有限公司新疆分公司招聘31人笔试考试备考题库及答案解析
- AI智慧操场行业研究报告
- 新生儿脓胸的护理
- 第5版pfmea考试试题及答案
- 超纯水保养合同协议
- GB/T 33588.6-2025雷电防护系统部件(LPSC)第6部分:雷击计数器(LSCs)的要求
- 2025年新教材道德与法治三年级上册第一单元《做学习的主人》教案设计
- 国家开放大学《政府经济学》形考任务1-4答案
- 卖身合同协议书
- 铝合金门窗合同范本
- DB3704∕T 004-2020 阴平大枣生产技术规程
- 资产管理 文化数字资产交易实施指南 征求意见稿
评论
0/150
提交评论