46 Pages

Lecture37

Course: ENGR 101, Fall 2007
School: Michigan
Rating:
 
 
 
 
 

Word Count: 1638

Document Preview

101 Lecture Engineering 37 MATLAB I/O Prof. Michael Falk University of Michigan, College of Engineering Announcements Project 8, Due Tonight at 9pm Also on paper in your lab section Thurs/Fri. Sample output can be found in the Resources/Projects part of the Ctools Site. Clarification: If a colony has 2 or more neighbors with the same, highest value of fitness that are of different types, the colony does...

Register Now

Unformatted Document Excerpt

Coursehero >> Michigan >> Michigan >> ENGR 101

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
101 Lecture Engineering 37 MATLAB I/O Prof. Michael Falk University of Michigan, College of Engineering Announcements Project 8, Due Tonight at 9pm Also on paper in your lab section Thurs/Fri. Sample output can be found in the Resources/Projects part of the Ctools Site. Clarification: If a colony has 2 or more neighbors with the same, highest value of fitness that are of different types, the colony does not change. Friday: Exam 4 Review Monday: Super Quiz - no 3 point limit (approx 10 clicker questions all on MATLAB) More Announcements Exam 4 will take place Fri, Dec 15 from 8-10am. Samples of Exam 4 have now been posted Section 201, 203 EECS 1500 Section 202 EECS 1301 Sections 204, 205 EECS 1311 Section 206 EECS 1303 Sections 207, 208 IOE 1610 Section 209 IOE 1680 If you have a conflict with this time contact me by this Friday. The alternate exam time for those with exam conflicts only is Fri, Dec 15 from 10:30-12:30 in EECS 1500 Yet More Announcements Returned work and regrades: Remember that you cannot turn in regrade requests to your GSI more than 1 week after the paper is returned in your lab section. Furthermore Dec 15 (on your way into the final exam) is the last day for regrade requests and to turn in time sheets if you have been doing tutoring to earn an A+ in the class. Project 5 and 6 regrade requests must be turned in this week (deadline depends on which day your GSI handed Project 5 and/or 6 back in section). Project 7 will be returned this week Thursday/Friday and can only be turned in for regrade up until Dec 15. Project 8 will be available for pickup next week Tuesday and can only be turned in for regrade up until Dec 15. Exam 3 will be returned this week Tues/Weds and can only be turned in for regrade up until Dec 12/13. Course Evaluations Please take the time to write general comments on the back of the form. I read all comments and take them into account. I am particularly interested in finding out the following: 1. 2. 3. 4. 5. 6. Did you find answering PRS questions during class useful for your in-class learning? Did you regularly consult with your assigned discussion group during PRS questions? Did you work with people you met in your PRS discussion group on projects or while studying outside of class? Do you think you would have met these people without being assigned to a group, ie if seating was self-selected? Would you have preferred self-selected seating? How strongly do you feel that way? Did you find the Project topics interesting? Are there any that you thought were particularly good or bad? Input/Output in MATLAB There are a number of ways you can handle input from keyboard and files as well as output to screen and files. Simple I/O: disp and input Formatted output: fprintf Storing data in files simply: save/load General file input/output: fopen, fscanf, fprintf and fclose. disp/input The most straightforward way to incorporate input/output into MATLAB programs is to use display and input. disp( data ) will output the data to the screen. Unlike display() which is called after any command that does not end with a semicolon, disp() does not put a "data =" message before the output. disp() Example: x = [5 : 9]; disp(x); Output: 5 6 7 8 9 disp() Example: name = `Zarathustra'; disp([ `My name is ` name]); Output: My name is Zarathustra input() The easiest way to get input from the user is the input() command. The input(question) command prints the question and then returns the input read from the user via the keyboard. input() Example: num = input( ` How many? `); disp([ ` You want ` num ` ?']); Output: How many? 10 You want 10 ? Exercise 1 Which program will output the following 3 rows of text? 00000000011111111112222222 12345678901234567890123456 abcdefghijklmnopqrstuvwxyz Exercise 1 00000000011111111112222222 12345678901234567890123456 abcdefghijklmnopqrstuvwxyz 3. letters = char([0 :25]+ 'a') ; ones = char(mod([1 :26],10)+'0') ; tens = char(floor([1 :26]/10)+'0'); disp([tens; ones; letters]); Formatted output Sometimes you want to specify the output precisely. The fprintf() command allows you to specify a formatting string. fprintf(format_string, variables) will print the values in the variables as specified in the format_string. Places for numbers in the format string are specified like: %-12.5e %{+,-,0}{field width}.{precision}{conversion} +: include sign, -: left justify, 0: pad with zeros Formatted output Conversion characters: %c %d %e %E %f %g %G %s %u single character decimal number exponential notation (lowercase e) exponential notation (uppercase E) fixed point notation the more compact of %e or %f the more compact of %E or %f string decimal (unsigned) Formatted output Special characters in the format string \t \n \\ \% tab new line backslash percent fprintf() Example: num = 1234.56789; fprintf(`The number is %f !',num); Output: The number is 1234.56789 ! fprintf() Example: num = 1234.56789; fprintf(`The number is %e !',num); Output: The is number 1.2345678e+003 ! fprintf() Example: num = 1234.56789; fprintf(`The number is %g !',num); Output: The number is 1234.567 ! fprintf() Example: num = 1234.56789; fprintf(`The number is %.1f !',num); Output: The number is 1234.6 ! fprintf() Example: num = 1234.56789; fprintf(`The number is %08.1f !',num); Output: The number is 001234.6 ! Exercise 2 Which program, given a list of inventory item names (prod) and a list of the quantity and price will print a list in the format: item hammer nails saw quantity 20 2000 5 price 12.50 0.10 25.00 Exercise 2 Which program, given a list of inventory item names (prod) and a list of the quantity and price will print a list in the format: item hammer nails saw quantity 20 2000 5 price 12.50 0.10 25.00 2. fprintf('%-10s%10s%10s\n', 'item', 'quantity', 'price'); for n = 1:length(quant) fprintf('%-10s%10d%10.2f\n',prod(n,:),quant(n),price(n)); end Save/Load Sometimes during a MATLAB session or in the course of executing an M-File program there are one or more matrices that have data you would like to save to use later possibly in a different context. save can be called with or without parentheses. If it is called with parentheses then each argument is a string. save Examples save save() What it does Save all workspace variables in a file called matlab.mat save Examples save mydata.mat save(`mydata.mat') What it does Save all workspace variables in a file called mydata.mat save Examples save mydata.mat X Y save(`mydata.mat', `X', `Y') What it does Save the data in X and Y in a file called mydata.mat save Examples save mydata.txt X Y -ascii save(`mydata.txt', `X', `Y', `-ascii') What it does Save the data in X and Y in a file called mydata.txt in ASCII format. Note the default is a binary format that is not easily readable outside of MATLAB. save Examples save mydata.txt X* -ascii save(`mydata.txt', `X*', `-ascii') What it does Save the data in any matrix starting with an X in mydata.txt in ASCII format. save Examples save mydata.txt X* -ascii -double save(`mydata.txt', `X*', `-ascii -double') What it does Save the data in any matrix starting with an X in mydata.txt in 16 digit ASCII format. The default is 8 digits. save CAVEATS Data must be 2D character or data array Imaginary part of complex numbers is lost If using load to read data all items must have the same number of columns All data is written as floating point numbers; there is no record of which were character and which were floating point. Exercise 3 Which program will take in up to 4 string arguments and save the matrix with the name corresponding to each string in a .mat file with the same name? i.e. savevars(`this', `that') would save the matrix this in the file this.mat and the matrix that in the file that.mat Exercise 3 1. function savevars(v1,v2,v3,v4) if nargin > 3 & ~isempty(v4) save([v4 `.mat'],v4); end if nargin > 2 & ~isempty(v3) save([v3 `.mat'],v3); end if nargin >1 & ~isempty(v2) save([v2 `.mat'],v2); end if nargin > 0 & ~isempty(v1) save([v1 `.mat'],v1); end load Examples load load() What it does Load all workspace variables in a file called matlab.mat load Examples load mydata.mat load(`mydata.mat') What it does Load all workspace variables in a file called mydata.mat (Matlab assumes binary format) load Examples load mydata.ext load(`mydata.ext') What it does Load all workspace variables in a file called mydata.ext (If ext is anything but mat then Matlab assumes ASCII format) load Examples load mydata.ext -mat load(`mydata.ext', `-mat') What it does Load all workspace variables in a file called mydata.ext that is in binary format. load Examples load mydata.mat -ascii load(`mydata.mat', `-ascii') What it does Load all workspace variables in a file called mydata.mat that is in ASCII format. load Examples load mydata.mat X load(`mydata.mat', `X') What it does Load the matrix X from a file called mydata.mat load Examples load mydata.mat X Y load(`mydata.mat', `X', `Y') What it does Load the matrices X and Y from a file called mydata.mat load Examples load mydata.mat X* load(`mydata.mat', `X*') What it does Load the matrices that start with an X from a file called mydata.mat General File I/O There are also several commands provided to write to files on disk. To open a file: fid = fopen( filename, permission ); fid = fopen(`Myfile.txt', `r'); To close a file: close(fid) Permissions `r' `w' `a' `r+' `w+' `a+' read only write to new file append to new or existing file read and write read and overwrite read and append fprintf with files You can use fprintf to output to files fid = fopen(`Myfile.txt', `w'); fprintf(fid, `It is %.2g meters long', num); fscanf There is an analogous command called fscanf to get data fid = fopen(`Myfile.txt', `r'); decnum = fscanf(fid, `%d'); fread/fwrite There are also commands for reading and writing binary data, but we will not detail them here.
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Michigan - ENGR - 101
Lecture 35 3D Data RepresentationEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncementsProject 8 due Weds, 12/6 at 9pm Written work due Thurs/Fri 12/7-8 in your lab section.Because of a grading disc
Michigan - ENGR - 101
Lecture 05 Standard OperationsEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncementsProject 1 Due Wednesday at 9pm Reading: Chapter 2, Sections 5-9 I will be away next week M-Th I will be speaking a
Michigan - ENGR - 101
Engineering 101Lecture 15 SelectionProf. Michael Falk University of Michigan, College of EngineeringAnnouncementsProject 4 due Friday 10/20 at 7pm Office Hours will be altered next week due to Fall Break No Wednesday lab 10/18 Exam 2: 10/2
Michigan - ENGR - 101
Lecture 17 Data RepresentationEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncements Project 4 due Friday 10/20, 7pm Office Hours this week: Tuesday 7-9pm Pierpont B519 (JL) Wednesday 11:30-12:30 Pi
Michigan - ENGR - 101
Lecture 07 Functions vs. ProceduresEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncementsProject1 Due Tonight at 9pmFunctions Provide Structureint main( ){ double A = 1.0, B; double C = 5.0; B = C; B
Michigan - ENGR - 101
Engineering 101Lecture 38 Exam 4 ReviewProf. Michael Falk University of Michigan, College of EngineeringAnnouncements Project 8, Due on paper in your lab section by today. Monday: Super Quiz - no 3 point limit (approx 10 clicker questions all
Michigan - ENGR - 101
Lecture03 Algorithms and CallersEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncements Project 0 Due this Wednesday at 9pm Project0 directory will be generated for you by today. Make sure to name yo
Michigan - ENGR - 101
Lecture 25 New Project 6 and RecursionEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncementsProject 6 has been changed. It is still due Monday Nov 13, 9pm Exam 3 Monday Nov 20, 7-9pm Early Admin Frid
Michigan - ENGR - 101
Lecture 08 Side Effects and ProceduresEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncementsProject 2 Due Wednesday at 9pm TestCase2 program generated test cases. Exam 1 will be held Wednesday 10/
Michigan - ENGR - 101
Engineering 101Lecture 11 Exam 1 ReviewProf. Michael Falk University of Michigan, College of EngineeringAnnouncementsNo Office Hours 4-5pm today. Office Hours will be held Tuesday from 4-5pm in CSE 2636.AnnouncementsExam 1 Wednesday 10/
Michigan - ENGR - 101
Lecture 31 Creating and Manipulating Matrices in MATLABEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncementsProject 7 Due Weds Nov 22 at 5pm Turned in on paper in Pierpont B519 May be turned in early
Michigan - ENGR - 101
Lecture 22 Generic Types and VectorsEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncements Project 5 due Weds at 9pm Exam 2 is being graded. Will be returned Thursday/Friday. A new grade book will b
Michigan - ENGR - 101
Lecture02 Intro to AlgorithmsEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncementsFriday 4:30-5:30 office hours are somewhat different Work together to conceptualize the project. Form "project worki
Michigan - ENGR - 101
Lecture 20 Floating Point Numbers and StringsEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncementsExam 2 Wednesday 10/25 at 7pm. Room Assignment by First Letter of Last Name A-G H-O P-U V-ZDow
Michigan - ENGR - 101
Lecture 34 More Programming in MATLABEngineering 101Prof. Michael Falk University of Michigan, College of EngineeringAnnouncements Project 8 Due Weds Dec 6 at 9pm Paper copies and written part due in section on Dec 7 and 8 Projects 5
Michigan - ENGR - 101
Engineering 101Lecture 06 Intro to FunctionsProf. Michael Falk University of Michigan, College of EngineeringAnnouncementsProject 1 Due Wednesday at 9pmMathematical OperatorsOperator Meaningsign change multiplication real divisionArity
Michigan - ENGR - 101
Engineering 101Lecture 27 MatricesProf. Michael Falk University of Michigan, College of EngineeringMatricesOne very important data structure for doing engineering and scientific computation is the matrix. 3 2 5 4 4 1 0 2 -1A matrix is a t
Michigan - ENGR - 101
Engineering 101Lecture 14 Analyzing LoopsProf. Michael Falk University of Michigan, College of EngineeringAnnouncements Project 3 program due 10/11, report due 10/12 or 10/13 depending on your section. Exams will be returned this week in
Michigan - MATH - 216
Math 216 (Section 50) 1 (2.11)Written Homework #2 SolutionsFall 2007dx = x - x2 = x(1 - x) = -x(x - 1) dt 1 dx = = -1 x(x - 1) dt 1 = dx = -dt. (x - 1)(x + 1) However, 1 = x(x - 1) and thus 1 1 dx = -dt - x-1 x 1 1 dx = -dt = - x-1 x 1 1 dx =
Michigan - ENGR - 101
Math 216 (Section 50) 1 (7.114)Written Homework #10 SolutionsFall 2007L{f (t)} = L{t3/2 - e-10t } = L{t3/2 } - L{e-10t } = However,(5/2) 1 - 5/2 s + 10 s(s > 0).(5/2) = and so3 3 3 , (3/2) = (1/2) = 2 4 4 3 1 L{f (t)} = (s > 0). - 4
Michigan - ENGR - 101
Math 216 (Section 50)Written Homework #9 SolutionsFall 20071 (5.36) The mass matrix and stiffness matrix are given by M= m1 0 0 m2 = 1 0 , 0 2 K= -(k1 + k2 ) k2 -6 4 = k2 -(k2 + k3 ) 4 -8Now the equation of motion is M x = Kx x = Ax, where
Michigan - ENGR - 101
Math 216 (Section 50) 1 (7.44)tWritten Homework #11 SolutionsFall 2007ttf (t) g(t) :=0 tf ( ) g(t - ) d =0f (t - ) g( ) d =0(t - )2 cos d=0(t2 - 2t + 2 ) cos dt t t= t20cos d - 2t0 cos d +0 2 cos dNow
Michigan - ENGR - 101
Math 216 (Section 50) 1 (5.12) (a) Since BC = we have 3 -4 5 1Written Homework #8 SolutionsFall 20070 2 -12 10 = , 3 -1 3 9 2 -3 4 7 -9 -11 47 -9AB =2 -3 4 73 -4 -9 -11 = , 5 1 47 -9A(BC) = and (AB)C = Therefore A(BC) = (AB)C. (b) We c
Michigan - ENGR - 101
Math 216 (Section 50) 1 (4.14) Let us first rewrite Let us defineWritten Homework #7 SolutionsFall 20072 5 ln t 1 x(3) - x + 2 x + 3 x = 3 . t t t t x1 := x, x2 := x = x1 , x3 := x = x2 .Therefore the given differential equations are rewritt
Michigan - ENGR - 101
Math 216 (Section 50) 1 (3.51) Let us assumeWritten Homework #6 SolutionsFall 2007yp (x) = A e3x . Plugging this into the equation, we have 9A e3x + 16A e3x = e3x = 25A e3x = e3x = 25A = 1 = A = Therefore yp (x) = 2 (3.53) Let us assume yp (x)
Michigan - ENGR - 101
Math 216 (Section 50)Written Homework #5 SolutionsFall 20071 (3.34) For the given differential equation 2y - 7y + 3y = 0, the characteristic equation is 2r2 - 7r + 3 = 0, which can be factored as follows: (2r - 1)(r - 3) = 0. Thus we have r =
Michigan - ENGR - 101
Math 216 (Section 50) 1 (3.12) VerificationWritten Homework #4 SolutionsFall 2007y1 = (cos 2x) = -2 sin 2x, Thusy1 = -2(sin 2x) = -4 cos 2x = -4y1 . y1 + 4y1 = 0.Also y2 = (sin 2x) = 2 cos 2x, Thus y2 + 4y2 = 0. Particular Solution Set y
Michigan - ENGR - 101
Math 216 (Section 50)Written Homework #3 SolutionsFall 20071 (2.42) The IVP (Initial Value Problem) to solve is y = f (x, y), where f (x, y) = 2y. With (x0 , y0 ) = (0, 1/2), and a given value of h, Euler's method looks like the following: y1
Michigan - ENGR - 101
Math 216 (Section 50) 1 (1.14)Written Homework #1 SolutionsFall 2007 y1 y1 = 3e3x = y1 = 32 e3x = 9 e3x = 9y1 .y1Therefore y1 is a solution of the differential equation y = 9y. y2 y2 = -3e-3x = y2 = (-3)2 e-3x = 9 e-3x = 9y2 .y2Therefor
Michigan - MATH - 215
Math 215 Homework Set 10: 17.5 17.7 Fall 2007 Most of the following problems are modified versions of the recommended homework problems from your text book Multivariable Calculus by James Stewart. 17.5a. The role of curl and divergence in multivaria
Michigan - MATH - 215
Math 215 Homework Set 2: 13.4 13.5 and 13.7 Fall 2007 Most of the following problems are modified versions of the recommended homework problems from your text book Multivariable Calculus by James Stewart. 13.4a. Prove the law of cosines. (Hint: Foll
Michigan - MATH - 215
Math 215 Homework Set 8: 17.1 17.3 Fall 2007 Most of the following problems are modified versions of the recommended homework problems from your text book Multivariable Calculus by James Stewart. 17.1a. Do Problems 1114 of 17.1 in Stewart's Multivar
Michigan - MATH - 215
Math 215 Homework Set 7: 16.6 16.8 Fall 2007 Most of the following problems are modified versions of the recommended homework problems from your text book Multivariable Calculus by James Stewart. 16.6a. Find the region E for which the triple integra
Michigan - MATH - 215
Math 215 Homework Set 5: 15.6 15.7 Fall 2007 Most of the following problems are modified versions of the recommended homework problems from your text book Multivariable Calculus by James Stewart. 15.6a. Use the table for wave heights in Problem 4 of
Michigan - MATH - 215
Math 215 Homework Set 6: 15.8 16.5 Fall 2007 Most of the following problems are modified versions of the recommended homework problems from your text book Multivariable Calculus by James Stewart. 15.8a. Find the extreme values for the function 2y 2
Michigan - MATH - 215
Math 215 Homework Set 1: 13.1 13.3 Fall 2007 Most of the following problems are modified versions of the recommended homework problems from your text book Multivariable Calculus by James Stewart. 13.1a. Prove the Pythagorean theorem. (Hint: We do no
Michigan - MATH - 215
Math 215 Homework Set 3: 13.7 15.1 Fall 2007 Most of the following problems are modified versions of the recommended homework problems from your text book Multivariable Calculus by James Stewart. 13.7b. Sketch the solid or surface described by the f
Rutgers - POLISCI - 102
Alternatives to Power PoliticsCHAPTER THREEInternational Relations 8/e Goldstein and PevehousePearson Education, Inc. publishing as Longman 2008Realism recap Realism offers mostly dominance solutions to the collective goods problems of IR.
Rutgers - POLISCI - 102
Foreign PolicyCHAPTER FOURInternational Relations 8/e Goldstein and PevehousePearson Education, Inc. publishing as Longman 20081Individual Decision Makers Two specific modifications of the rational model of decision making have been proposed
Rutgers - POLISCI - 102
International ConflictCHAPTER FIVEInternational Relations 8/e Goldstein and PevehousePearson Education, Inc. publishing as Longman 20081Review: Politics is. The authoritative allocation of values Who gets what, when, and how The resolution
Rutgers - POLISCI - 102
Military Force and TerrorismCHAPTER SIXInternational Relations 8/e Goldstein and PevehousePearson Education, Inc. publishing as Longman 20081Conventional Forces State leaders can use soft power or hard power as leverage: Nonviolent levers
Rutgers - POLISCI - 102
Conflict War and TerrorismCHAPTER SIXSecurity Communities and Clashes of Civilizations Supplemental readings: Jervis, Huntington, and Zakaria119th century language groups2Europe 19143Territory changes 19204Territory changes 19455
Trinity U - SPCH - 1333
Pearls Chapter 12 Chapter 12 1. Certain speeches must be delivered word for word, according to a meticulously prepared manuscript. 2. An impromptu speech is delivered with little or no immediate preparation. 3. Unlike an impromptu speech, which is to
Arizona - BIO - 182
Plant diversityThe focus of the next few lectures is on plants.We begin with an overview of their diversity, emphasizing a few selected groups of plants, then move to a discussion of their form and function.Plants are multicellular, autotrophic
Arizona - BIO - 182
Plant structure and functionThe central question that we address next is: how do plants function efficiently in environments that differ greatly in water availability and temperature?Before we can address this question in detail, we need to revie
Arizona - BIO - 182
Plant adaptation to water stressWe now turn to the question of how plants living in dry environments function efficiently. In particular, we examine the concept of photosynthetic water-use efficiency in plants.*Photosynthetic water-use efficiency
Arizona - BIO - 182
Plant adaptation to heat stressWe now turn to the question of how plants living in hot environments function efficiently. The means by which plants cope with hot environments is well-illustrated by creosote bush (Larrea divaricata), a common shrub
Arizona - BIO - 182
Integrated plant responses to water and heat stressHigh temperatures are not the only potentially harmful environmental conditions to which organisms living in the desert are exposed.For example, solar radiation levels may be very high, atmospheri
Trinity U - ENGL - 1302-08
Dr. Campbell Writing Workshop Art PaperRaphaelRenaissance means rebirth. The time period classified as the Renaissance was just that, a rebirth of classical culture. It was during this time that many of the great artists were in their primes. Som
Trinity U - SPCH - 1333
Criteria Used for Evaluating Speeches The average speech (grade C/70-80) should meet the following criteria: 1. Conform to the kind of speech assigned informative, persuasive, etc. 2. Be ready for presentation on the assigned date. 3. Conform to the
UC Irvine - WRITING - 39B
Brian Rhorer Esther Bermann Lynda Haas Writing 39B 5 December 2007 Valorous Vengeance of V Vows Valiant Verdict "Remember, remember the fifth of November, the gunpowder, treason and plot, I know of no reason why gunpowder treason should ever be forgo
Berkeley - NUTRI SCI - 10
Nutritional Sciences 10Midterm Exam IIFall 2006It is the student's responsibility to know the following instructions. Failure to adhere to the following instructions may result in 0 points earned on the exam. Print your name on the line provide
Berkeley - NUTRI SCI - 10
Nutritional Sciences 10Fall 2006Midterm Exam IIIIt is the student's responsibility to know the following instructions. Failure to adhere to the following instructions may result in 0 points earned on the exam. Print your name on the line provid
Berkeley - NUTRI SCI - 10
Nutritional Sciences 10 Midterm Exam I 45 pointsProf. Amy: Fall 2006It is the student's responsibility to know the following instructions. Failure to adhere to the following instructions may result in 0 points earned on the exam. Print your name
Berkeley - NUTRI SCI - 10
Nutritional Sciences 10 Professor Nancy Amy December 16, 2006 FINAL EXAM 45POINTSIt is the student's responsibility to know the following instructions. Failure to adhere to the following instructions may result in 0 points earned on the exam.
UC Irvine - WRITING - 39B
Brian Rhorer Lynda Haas Writing 39BAre You the Hero of Tomorrow? Is today's super hero so much different from the average student or adult working nine to five? Since at least the 8th century, when Beowulf appeared as the first English hero in lite
Berkeley - NUTRI SCI - 10
Nutritional Sciences 10Prof. Amy: May, 2006 Final Exam 60 pointsIt is the student's responsibility to know the following instructions. Failure to adhere to the following instructions may result in 0 points earned on the exam. Print your name on
UC Irvine - PHIL - 12
Brian Rhorer January 31, 2008 Phil 12 Jolley, S.Prompt 2: The Apple AnalogyIn the first meditation, the Meditator decides to reject all of his beliefs that he has been forming since childhood, as he realizes that these falsehoods have clouded his
Trinity U - ENGL - 1302-08
UC Irvine - PHIL - 12
1. Monadology: intro -Discourse vs. Monadology; Discourse: souls and organisms. -Helpful to keep in mind difference between appearance and reality. Plato: senses not reliable guide to grasping reality. In LZ; also in DC in moderate form. DC's view co
Trinity U - ENGL - 1302-08
Outline Thesis: Although the secular view of evil has an ever-changing definition, it has generally revolved around someone or a society committing an act that is morally wrong against an unwilling victim(s). Topic 1: People in the past have defined