DOC PREVIEW
PSU EE 350 - Rec_6_EE350_f14

This preview shows page 1-2-3-4-5-34-35-36-37-68-69-70-71-72 out of 72 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

ColorGrayscale Jeffrey Schiano 2014. All rights reserved. Rec 6. EE 350Continuous-Time Linear SystemsRecitation 61 Jeffrey Schiano 2014. All rights reserved. Rec 6. Recitation 6 Topics• Solved Problems – Generalized functions – Determining the impulse response h(t)– Determining the zero-state response using convolution• MATLAB Functions– Anonymous function– Inline function– Primary function2 Jeffrey Schiano 2014. All rights reserved. Rec 6. Generalized Functions• The generalized function δ(t) is defined by its effect on other functions by the sampling property• The generalized function δ(t), also as a functional, has the following properties3(t) ( ) ( ).ftTdtfT() 1( ) 0 when t 0tdtt Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 1• Using the definition and properties of δ(t), simplify the following expressions444(a) ( 10) ( 10) ( 8)(b) (2 8)(c) 8 d22ttttetteft  Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 1 Solution5 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 1 Solution6 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 2• Consider the RL network with input f(t) and output y(t)1. Represent the electrical network using an ODE2. Represent the network using the impulse response signal h(t)7f(t)2R1RLy(t) Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 2 Solution8 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 2 Solution9 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 2 Solution10 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 2 Solution11 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 3• For the RL network in Problem 2, let• Determine the zero-state response for the input f(t)1. By solving the ODE representation of the network2. By evaluating the convolution integral 1212500R= R= 1Ω,L = 1mH() ()tft e ut Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 3 Solution13 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 3 Solution14 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 3 Solution15 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 3 Solution16 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 4• An electrical network with input f(t) and output y(t) is represented by the ODE • Represent the network by an impulse response signal h(t)1770 1000 1000yy y f  Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 4 Solution18 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 4 Solution19 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 4 Solution20 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 5• A LTI system with input f(t) and output y(t) is represented by the impulse response1. Sketch h(t)2. Is h(t) a causal or noncausal signal?3. Determine the zero-state response for the input f(t) = δ(t) by evaluating the convolution integral4. Based on your response in part 3, is the systemcausal or noncausal21()tht e Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 5 Solution22 Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 5 Solution23 Jeffrey Schiano 2014. All rights reserved. Rec 6. MATLAB Functions24• Why use functions?• Splitting a large program into smaller pieces that each performs a well defined task provides several advantages – The program is easier to read– The program is easier to modify– The program is more resistant to error– Functions are reusable; once defined, they can be used over and over again in the same program, or in different programs Jeffrey Schiano 2014. All rights reserved. Rec 6. Types of MATLAB Functions• MATLAB provides two distinctly different types of functions• Functions defined by a single line– Anonymous function– Inline function• Functions defined by multiple lines in a m-file– Primary function25 Jeffrey Schiano 2014. All rights reserved. Rec 6. Anonymous Functions• Defined using one statement• Can be placed used in a– command line– m-file– another function• Syntax• The function_name identifies the function and is called the function handle26function_name = @(list of input arguments) function_expression Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 6• The polynomial Q(D) for a second-order system may be represented using two different notations• Write an anonymous function that takes as an input the vector Q = [1, a1, ao] and returns the vector [ z, wn ]• Verify your result using the polynomial 2721022(D)(D) 2nnQD aDaQD D2(D) 2 4QDD Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 6 Solution28 Jeffrey Schiano 2014. All rights reserved. Rec 6. Inline Functions• Similar to anonymous functions• Uses built-in function inline• Syntax29function_name = inline('function_expression'), 'var_1', 'var_2', ) Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 7• The polynomial Q(D) for a second-order system may be represented using two different notations• Write an inline function that takes as an input the vector Q = [1, a1, ao] and returns the vector [ z, wn ]• Verify your result using the polynomial 3021022(D)(D) 2nnQD aDaQD D2(D) 2 4QDD Jeffrey Schiano 2014. All rights reserved. Rec 6. Problem 7 Solution31 Jeffrey Schiano 2014. All rights reserved. Rec 6. Primary Functions• A user-defined function script is written within a m-file• The name of the m-file and the function name must be identical• The m-file must start with the primary function definition line1. The character string function is a reserved key word that must be in in lowercase 2. Output and input arguments are a list of valid MATLAB variable names separated by commas32function [output arguments] = function_name


View Full Document

PSU EE 350 - Rec_6_EE350_f14

Documents in this Course
ps11

ps11

6 pages

ps10_soln

ps10_soln

20 pages

ps10

ps10

5 pages

ps9_soln

ps9_soln

19 pages

ps9

ps9

4 pages

ps8_soln

ps8_soln

19 pages

ps8

ps8

5 pages

ps7_soln

ps7_soln

22 pages

ps7

ps7

4 pages

ps6_soln

ps6_soln

27 pages

ps6

ps6

5 pages

ps5_soln

ps5_soln

25 pages

ps5

ps5

7 pages

ps4_soln

ps4_soln

20 pages

ps4

ps4

5 pages

ps3_soln

ps3_soln

27 pages

ps3

ps3

6 pages

ps2_soln

ps2_soln

24 pages

ps2

ps2

5 pages

ps1_soln

ps1_soln

17 pages

ps1

ps1

5 pages

ps11_soln

ps11_soln

28 pages

examI_s04

examI_s04

16 pages

examI_s03

examI_s03

10 pages

examI_s02

examI_s02

12 pages

examI_s01

examI_s01

13 pages

examI_f99

examI_f99

15 pages

examI_f14

examI_f14

26 pages

examI_f11

examI_f11

26 pages

examI_f10

examI_f10

26 pages

examI_f09

examI_f09

26 pages

examI_f08

examI_f08

13 pages

examI_f07

examI_f07

11 pages

examI_f03

examI_f03

11 pages

examI_f02

examI_f02

14 pages

examI_f01

examI_f01

15 pages

examI_f00

examI_f00

14 pages

final_s99

final_s99

16 pages

final_s97

final_s97

13 pages

final_s04

final_s04

30 pages

final_s03

final_s03

12 pages

final_s02

final_s02

14 pages

final_s01

final_s01

14 pages

final_s00

final_s00

17 pages

final_f99

final_f99

16 pages

final_f98

final_f98

16 pages

final_f11

final_f11

40 pages

final_f10

final_f10

32 pages

final_f09

final_f09

32 pages

final_f08

final_f08

26 pages

final_f07

final_f07

26 pages

final_f03

final_f03

12 pages

final_f02

final_f02

14 pages

final_f01

final_f01

14 pages

final_f00

final_f00

16 pages

examI_s99

examI_s99

13 pages

Load more
Download Rec_6_EE350_f14
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Rec_6_EE350_f14 and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Rec_6_EE350_f14 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?