1 / 193

Basic Engineering Mathematics with Matlab

Basic Engineering Mathematics with Matlab. Professor Long-Wen Chang National Tsing Hua University Hsinchu, Taiwan. Why engineering mathematics is very important ? It is very important for the applications of signal analysis. The applications include

oria
Télécharger la présentation

Basic Engineering Mathematics with Matlab

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Basic Engineering Mathematics with Matlab Professor Long-Wen Chang National Tsing Hua University Hsinchu, Taiwan

  2. Why engineeringmathematics is very important ? It is very important for the applications of signal analysis. The applications include electrical engineering, computer engineering, civil engineering, mechanical engineering and physics etc..

  3. Outlines • One dimensional continuous time signals • One dimensional continuous systems • Linear ODE in the time domain • The Laplace transform • Linear ODE in the Laplace transform domain • Fourier transform • Analog filters

  4. Why a learning tool is needed ? • To learn efficiently and effectively • To learn by doing simulations

  5. The learning tools • Low cost and high speed multimedia computers are available. • Mathematical Software such as Matlab, Mapel, Mathematica is available. • Microsoft power point is very good for presentation.

  6. Why MATLAB is used ? • It can use a simple instruction to compute a very complex mathematical function. • It provides high resolution two dimensional and three dimensional graphic plot functions for signal analysis.

  7. Why MATLAB is used ? • It can play the sound and display an image in a personal computer or a workstation locally or from the computer network with the X window interface. • MATLAB programs are portable in many computer systems.

  8. Why MATLAB is used ? • It provides interface with the programming language C to enhance its programming ability and execution speed. • We can write a simple program easily to simulate an application which might takes many hours or many days in C or Fortran.

  9. Chapter 1One Dimensional Continuous Time Signals

  10. Outline • What are signals ? • What are analog signals ? • What are physical signals ? • Bounded signals with finite energy • Linear convolution of two analog signals

  11. Introduction What are Signals ? In a real world a lot of physical events can be described as signals.

  12. Examples Ultrasound signals are helpful for medicine; Seismic signals are used to detect the earthquake; Electric signals are used to operate electric devices; Radio signals are used for communication.

  13. Examples There are also other signals that are very useful. Among them, audio signals and visual signals are the most important for human beings. Audio signals can be heard while visual signals can be seen.

  14. What are Multimedia signals? • Audio • Video • Image • Text • Graphics

  15. Figure 1.1 shows a sound wave Figure 1.2 shows a mandrill image.

  16. Figure 1.1: A sound wave

  17. Adam.wave

  18. Phantom of Opera • 8 bits, 44.1 Hz (Mono) • '8 bits, 22.05Hz(Mono) • '8 bits, 44.1 Hz(Stereo) • ‘16 bits, 22.05 Hz(Mono)

  19. How to play a .wav file ? • [y,fs]=wavread('adam.wav'); • t=(1:length(y))/fs; • fr=int2str(fs); • plot(t,y); • title(['Sample frequency= ',fr,'(Hz)']); • xlabel('Time'); • sound(y,fs);

  20. Figure 1.2: A mandrill image

  21. A 256 gray level image

  22. A binary image

  23. Physical Signals In a physical world, signals are real values with finite energy. Mathematical Signals In a mathematical world, signals can be complex valued and have infinite energy.

  24. Definition 1:An one dimensional real-valued analog signal is defined as a piecewise continuous function ,where . Its magnitude is defined as its absolute value

  25. What are analog signals ? Traditionally, analog signals means signals that are continuous in both time and magnitude. Continuous time signals means analog signals.

  26. Analog Signals • Sinusoidal signals • DC signals • Unit step signals • rectangular signals • triangular signals • Exponential signals • square signals

  27. Analog signals (continued) • Sgn(t) • Cosh(t) • Sinh(t) • Sinc(t)

  28. Analog Signals(Continued) • Nonperiodic signals • Periodic signals • Time limited signals • non-time limited signals

  29. Definition 2:Assume that a > 0. A sinusoidal signals is defined as an analog signal (1.1) Where a is the amplitude and  is the phase shift and w is the angular frequency given as (1.2)

  30. T is the period of the signal is called the cycle frequency in cycles/second. A cycle per second is also called a hertz (Hz).

  31. How to characterize a sinusoidalsignals? • Amplitude • Frequency • Phase shift

  32. The signal sin(wt + ) is a translated version of sin(wt). Similarly, f(t+a) is a translated version of f(t).

  33. Example 1:The signals a cos(wt) and a sin(wt) are continuous cosine and sine signals. They both have the amplitude a and the frequency w. Figure 1.3(a) and Figure 1.3(b) shows a cosine signal cos(2t) and a sine signal sin(2t). Their frequencies are 1 cycle/sec(Hz) and their amplitudes are 1, respectively. Note that

  34. Similarly, an electric voltage source f(t) = 110 * sin(120*t) has 60 Hz and it maximum voltage is 110 volts. Figure 1.4 shows sin(2t), sin(10t) and sin(20t). Their frequencies are 1 cycle/sec, 5 cycles/sec and 10 cycles/sec,respectively. As the frequency increases the signal oscillates rapidly.

  35. What are the frequencies of thefollowing signals ? • sin(2t) • sin(20t) • sin(20t) • sin(200t) • sin(2000t)

  36. Conventionally, cosine signals and sine signals with nonzero frequency are called AC signals. If their frequencies are large they are referred as high frequency signals; otherwise they are referred as low frequency signals. A signal with zero frequency is called a DC signal.

  37. Continuous plot • % Generate a 1 Hz cosine function sampled by T sec. • T=0.02; • t = -1 :T:1; • y = cos(2 * pi * t); • plot(t,y); xlabel('t'); • ylabel('f(t)');set(gca, 'Ylim',[-2, 2]);

  38. Figure 1.3: (a)cos(2t)

  39. (b) sin(2t)

  40. (c) f(t)=1

  41. Figure 1.4: (a)sin(2t)

  42. (b) sin(10t)

  43. (c) sin(20t)

  44. Definition 3:A DC signal is defined as f(t) = c, where cR and -<t< . Figure 1.3(c) shows a DC signal with c = 1 and A DC voltage source can be considered as a sinusoidal voltage source with zero frequency.

  45. Definition 4:An real valued exponential signal is defined as , where aR. Figure 1.5(a) and 1.5(b) shows two exponential signals with a = 1 and a = -1for -1t 1. If a>0 the signal increase exponentially to ; If a < 0 the signal decreases exponentially to 0.

  46. Figure 1.5: (a) A decreasing exponential signal

  47. (b) An increasing exponential signal

  48. Definition 5:A unit step signal u(t) is defined as (1.3) It has a discontinuity at t = 0. Figure 1.7 shows a unit step signal for -10 t 10.

More Related