7 Pages

intro_2_matlab

Course: ECE 460, Fall 2009
School: Michigan
Rating:
 
 
 
 
 

Word Count: 1749

Document Preview

SYSTEMS CONTROL LABORATORY Introduction to MATLAB (Bring a 3.5 in floppy disk with you to save your work) MATLAB is a high performance language for technical computing. It integrates computation, visualization and programming in an easy-to-use environment where problems and solutions are expressed in familiar mathematical notation. It is particularly convenient for modeling, simulation, analysis, and design of...

Register Now

Unformatted Document Excerpt

Coursehero >> Michigan >> Michigan >> ECE 460

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.
SYSTEMS CONTROL LABORATORY Introduction to MATLAB (Bring a 3.5 in floppy disk with you to save your work) MATLAB is a high performance language for technical computing. It integrates computation, visualization and programming in an easy-to-use environment where problems and solutions are expressed in familiar mathematical notation. It is particularly convenient for modeling, simulation, analysis, and design of dynamic control systems. The purpose of this lab project is to give you a quick introduction to MATLAB enabling you to use the software from the very beginning of the Control Systems course. To run MATLAB, doubleclick on the MATLAB icon. Once the program is loaded you will see the prompt " " in the command window. The command window is the main window in which we communicate with the MATLAB interpreter. Any thing typed after '%' sign is treated as a comment and ignored by MATLAB. A carriage return results in execution of a valid command in the command window. Part A: Examples of command line entries. In the command window, MATLAB commands are executed as soon as the return key is pressed. The following is a sequence of possible command line entries. Report Item #1 To get started with MATLAB recreate the following transactions and save them (in diary ) for the report. pwd % Gives current (present) working directory path(path, 'a:\') % Allows you to work from 'a' drive cd a: % Makes the 'a' drive the working drirectory Format compact % suppresses extra line-feeds diary my_file_name.txt % opens a text file named my_file_name.txt in 'a' drive % All subsequent transactions are written in this file. Remember to close the file at end of the session % Later, to close the file you will be typing diary off . % Explanation of the notation seen in the margin: YT: user typed entry; ML: Matlab's response. % Do not type YT and ML; that is not part of command line entry! % In the following, the MATLAB prompt " " is not shown % Example 1 - Scalars, vectors and matrices YT ML a=2.5 a= 2.5000 YT ML a=[1 a= 1 2 3 2 3] % " [ ] " signify a vector or a matrix % Assigns a scalar value to the variable "a". S. Murtuza, ECE/U of M - Dearborn 1 of 7 Printed: September 10, 1999 YT ML a=[1, a= 1 2 , 3] % both " , " and "blank space" act as delimiters; extra spaces are ignored 2 3 5 6; 7 8 10] % a " ; " signifies end of a row of the matrix YT ML a=[1 2 3; 4 a= 1 4 7 2 5 8 3 6 10 YT ML f= a(2,1) f= 4 % The element in Row 2 and Column 1 of matrix "a" YT ML g=a(2:3,2) % Will assign elements in rows 2 to 3 and column 2 of "a" to the variable "g" g= 5 8 YT ML h=a(2,2:3) % Will assign elements in row 2 and columns 2 to 3 of "a" to the variable "h" h= 5 6 %The semicolon after ] suppresses printing on screen of the value of "b" YT ML YT ML b=[1 2;3 4]; d=inv(b) % Matlab will compute the inverse of matrix "b" and assign it to "d" and print it. d= -2.0000 1.0000 1.5000 -0.5000 % Example 2 - Plotting graphs and repetitive computations. YT YT t=[0 : 0.1 : 20]'; % " t " is a column vector with elements 0,.1,.2,...,20 - a total of 201 elements for i=1 : 1 : 201 2 of 7 Printed: September 10, 1999 S. Murtuza, ECE/U of M - Dearborn YT efficient. x(i)=sin(t(i))*(t(i)^2); end y=sin(t) .* (t.^2); % alternate approach. Note that x = y = t 2 sin(t). Second method is more % The column vectors x and y are identical vectors of dimension 201. y is generated by using % array operators, an efficient way of performing repetitive computations. plot(t,x) % This command plots a x vs. t graph. With the graph window active, the plot can be printed % (just use the print command in the File menu). Next plot y vs. t for comparison. plot(t,y) YT ML YT Note: Use the key sequence ALT-TAB to switch among the MATLAB windows % Example 3 - Complex Arithmetic YT ML z=1+2i z= 1.0000 + 2.0000i YT ML r=abs(z) % absolute value or magnitude of z r= 2.2361 YT % Assigns a complex value to z; theta=angle(z) % angle of z in radians; multiply by (180/pi) for angle in degrees theta = 1.1071 ML YT YT ML fz=(z+1)/(z*(z^2-4*z+5)*(z-1)); % Evaluating complex expression: F(z) = fz fz = 0.1400 + 0.0200i % Example 4 - Factoring polynomials (z +1) z(z - 4z + 5)(z -1) 2 YT YT YT % F(s) = s 3 + 6s2 +11s + 6. We want to factor this polynomial. % In Matlab polynomials are defined as row vectors of the polynomial coefficients. pol1=[1 6 11 6]; rt1=roots(pol1); % computes the roots and stores the result in rt1 without printing on screen. rt1 S. Murtuza, ECE/U of M - Dearborn 3 of 7 Printed: September 10, 1999 ML rt1 = -3.0000 -2.0000 -1.0000 YT ML pol2=[1 4 rt2 = -2 -2 4]; rt2=roots(pol2) % You may have more than one command (statement) in a line! % Note: no ";" at the end of rt2 statement. If there is no ";" Matlab prints the value of the variable. YT ML pol3=[1 1 1]; rt3=roots(pol3) rt3 = -0.5000 + 0.8660i -0.5000 - 0.8660i YT YT ML f1=poly(rt1); f1 f1 = 1.0000 6.0000 11.0000 6.0000 % given the roots, this will compute the polynomial coeffs. % Example - 5 Partial Fraction Expansion. % Given a ratio of polynomials, G(s) = YT YT YT YT ML (3s + 7) , determine the corresponding PFE. (s + 6s2 +11s + 6) 3 % This is done by first defining the numerator and denominator polynomials. num1=[3 7]; den1=[1 6 11 6]; [r,p,k]=residue(num1,den1); % r is the vector of PFE coefficients; p the vector of roots of den1; % and k=0 if the degree of num1 < the degree of den1. r r= -1.0000 -1.0000 2.0000 YT p S. Murtuza, ECE/U of M - Dearborn 4 of 7 Printed: September 10, 1999 ML p= -3.0000 -2.0000 -1.0000 YT ML k k= [] % Example 6 - Plotting functions revisited. YT YT YT YT YT YT YT YT % Generate and plot the function: f (t) = 1 - 2e -0.24t cos(2t) t=[0 : 0.1: 20]; f=1-2*exp(-.24*t).*(cos(2*t)); % Array operator " .* " is needed to multiply two vectors element by element plot(t,f) xlabel(' The t axis ') ylabel(' The f axis ') title(' The plot of f versus t ') grid on diary off % The file my_file_name.txt is closed. Print out the file "my_file_name.txt" and include it in the report. PS. You may also copy and paste the transactions in the Command Window into a text file and print it. Report Item #2 While the Figure window is active, use print command from the file menu to get a hard copy of The plot of f versus t ; include the plot in the report. PART B : MATLAB Programming: Files that contain MATLAB language code are called M-files. M-files can be functions that accept arguments and produce output, or they can be scripts that execute a series of MATLAB statements. We create M-files using a text editor, then use them as any other MATLAB function or command. Report Item #3 Rework example 6 above (with suggested modifications) using a script m-file named ex_6.m. Include printout of the m-file and the plot in the report. While in the command window, choose New and m-file from the file pull-down menu. An Edit/Debug window opens. Type the following commands in that window and save the file as ex_6.m. Then, in MATLAB command window type ex_6 and hit return. S. Murtuza, ECE/U of M - Dearborn 5 of 7 Printed: September 10, 1999 % Generate and plot the function: f (t) = 1 - 2e -0.24t cos(2t) , and its envelopes t=[0 : 0.1: 20]; f=1-2*exp(-.24*t).*(cos(2*t)); % Array operator " .* " is needed to multiply two vectors element by element plot(t,f) hold on % holds the graph for superimposed plots plot(t,(1+2*exp(-0.24*t)), '--') % gives a dashed line plot plot(t,(1+2*exp(-0.24*t)), '--') % gives a dashed line plot xlabel(' The t axis ') ylabel(' The f axis ') title(' The plot of f versus t by second method ') grid on hold off % removes the hold for future plots Report Item #4 Write a function m-file which prompts the user for a positive integer input, say n, and returns the sum of integers from 1 to n. Include the printout of the m-file in the report. % function m-file int_sum.m function y=int_sum(x) % first line of a function m-file must be the function statement n=input(' Type an integer and hit return: ') % prompting for input if ( (n-abs(round(n))) ~= 0 ) % check if input is not a posit...

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 - ECE - 460
0.8 0.79744 0.70.6 0.57143 0.50.40.30.20.100510152025303540
Air Force Academy - PAG - 266
The Polish Institute of Arts and Sciences in Canada and the Polish Library, Bulletin (2005) 22, 31-37.Introduction to Canadian Light SourcePawel Grochulski The Canadian Light Source (CLS) is a 2.9 GeV third generation synchrotron facility, in the
Air Force Academy - GES - 125
TUTORIALApril 2004Copyright 2004 CBABelgium.com. All rights reservedCBABelgium.comPERANSO TUTORIAL11. Getting Started .6 1.1 About Peranso ..6 2. The Peranso User Interface .7 2.1 Three basic Peranso window types.7 2.1.1 The Observations
Truman State - REGISTRAR - 20032005
FACULTY/STAFFDEAN OF RESIDENTIAL COLLEGES Martin J. Eisenberg BLANTON-NASON-BREWER College Rector: Lin Twining (Science) Head Academic Advisor: Debra W. Kling Academic Advisor: Devon Mills CENTENNIAL College Rector: Jeffrey Gall (Social Science) Hea
McGill - C - 334
Wayne State University - ECE - 5870
ImplementationGeneral analysis (beyond the home work assignment)
USC - CS - 577
LCO PrototypingCS 577a Dan Port, USC, 2002 Enhanced by Jim Alstad, USC, 2003CS 577a Fall 2003Jim Alstad, 8 September 2003Page 1Contents: Prototyping in general Prototyping for LCO: PrototypingGoals of prototyping. Types of prot
USC - CS - 577
USCCS EUniversity of Southern CaliforniaCenter for Software EngineeringCS577a Fall 2003 September 15, 2003Software Quality Management 1 Introduction to Reviews A. Winsor Brown(c) 2003 AWBrown &amp; CSE Sept. 15,2003 1Goals of Presentation
USC - CS - 577
USCC S EUniversity of Southern CaliforniaCenter for Software EngineeringOCD: OPERATIONAL CONCEPT DEFINITION I To End Of &quot;Early Sections&quot;A. Winsor Brown, CSE-USC based on material from Dan Port, CSE-USC CS 577a Lecture September 17, 20039/17
USC - CS - 577
USCC S EUniversity of Southern CaliforniaCenter for Software EngineeringOCD: OPERATIONAL CONCEPT DEFINITION IIA. Winsor Brown, CSE-USC based on some material from Dan Port, CSE-USC Barry Boehm, CSE-USC CS 577a Lecture September 17, 2003(c)
USC - CS - 577
Architecture Design CS577a Fall 2003Ed Colbert USC Center for Software Engineering1 11/19/2003Goal of PresentationUnderstand how to perform Architecture DesignUsingMBASE Object-oriented techniques RUP Rational RoseUnderstand how to document
USC - CS - 577
USCC S EUniversity of Southern CaliforniaCenter for Software EngineeringSoftware Risk ManagementRay Madachy CS 577a, Fall 2003 December 1, 2003madachy@usc.eduUSCC S EUniversity of Southern CaliforniaCenter for Software Engineering
Michigan - MATH - 623
Math 623 (IOE 623), Winter 2009: Final examName:Student ID:This is a closed book exam. You may bring up to ten one sided A4 pages of notes to the exam. You may also use a calculator but not its memory function. Please write all your solutions i
N.E. Illinois - UX - 5230
Name: Eastern Illinois University Physical Education Department Physiology of Exercise Final Exam Spring 2007 Answer the following questions based on class discussion and assigned readings. Be specific and detailed in your answers. Completed exams a
Wisconsin - HOMEPAGES - 1875
10th Dist. A.C.|10th District A.C.|111th Ambulance|11th Cavalry|1st Infantry|1stTexasArtillery|20th Infantry|260th Coast Artil|260th Coast Artillery|2nd TX 132nd Inf|2nd Texas 132nd Infantry|362nd Infantry|3rd Army Corps|5th Division|63rd
Michigan - NRE - 0432
Bldg.No.0432 3FY 1997 1997 1997ART&amp;ARCHITECTUREBUILDING BuildingOperation&amp;ManagementUtilityEnergy_Unit MWH CCU CCU UtilityBTU_Equiv 3,413,000 101,800 0 UtilityConsumption 3,631,040.00 382,326.00 5,240.00 UtilityCost $290,483.20 $140,577.70 $18,05
Michigan - MATH - 214
MATH 214: Matlab Homework 1 Winter 2008 Due: 10 Apr.1. Write a matlab function that takes a set of three vectors in R4 as an input and returns a 1 or a 0 depending on whether the set is linearly independent or not. Use the isequal function as we did
Michigan - MATH - 214
MATH 214: Review 2 Winter 2008 Due: 14 Apr.A Write a (positive, and hopefully funny) Haiku about the course. Dont be racist/sexist/etc, be feel free to en.wiktionary.org/wiki/take the M ichael out of me! Worth at least 5 points. B Section Page Chp 4
Michigan - MATH - 214
MATH 214: Review Winter 2008 Set: 18 Mar. Due: 25 Mar.Section Page Chp 1 38 Chp 2 97 Cho 3 150 Problems to hand in 3, 13, 31 4, 8, 24 2, 8, 17, 41NOTE: No Partial Credit on this Homework. NOTE: in office hours, I may ask to see your solutions to t
Millersville - BIO - 472
Journal of Comparative Psychology 2005, Vol. 119, No. 1, 99 110Copyright 2005 by the American Psychological Association 0735-7036/05/$12.00 DOI: 10.1037/0735-7036.119.1.99Personality Traits in Dumpling Squid (Euprymna tasmanica): Context-Specific
Mississippi State - EE - 4253
EE 4253/6253December 2, 1998Page 164Observations for other Positive Edge-Triggered D-FFVDD D X VDD Y VDDQpositive edge-triggered TSPC D-flip flop (non-split output) Need to analyze for clock = 0 (master sampling, clock = 1: clock D X
Mississippi State - ECE - 4512
DigiTuner 1.01 - 23DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERINGdesign document forThe DigiTuner 1.0submitted to: Professor Joseph Picone ECE 4512: Senior Design I Department of Electrical and Computer Engineering 413 Hardy Road, Box 957
Allan Hancock College - COMP - 5348
COMP5348Lecture 5: PerformanceAdapted with permission from presentations by Alan Fekete, Uwe Roehm and James Hamilton1Outline! ! ! !Aspects of Performance Measuring Performance Performance Principles Performance vs. Power Efficiency2Loa
Mississippi State - ECE - 3714
Lab Exercise #13: Synchronous Sequential System Design _(A SID Sequencer)Revision: April 21, 2009Prelab Assignment Write your nine digit student ID: _ Separate the number into two groups (even and odd numbers) Write the groups above each other in
Mississippi State - ECE - 3434
Example: Bode Plots with MATLABUse MATLAB to make (&quot;exact&quot;) gain and phase Bode plots of the following transfer function: H ( j ) = A solution: First, here is the completed Bode plots of the gain and phase of the transfer function: 10 + j j ( 2 + j
Mississippi State - ECE - 3283
ECE 3283Problems in ideal opampsversion 3.9OA-1: Assume ideal opamps determine the voltage transfer gain T = vO/vS and input resistance Rin for each of the configurations by inspection. (Resistances are in k).OA-2: (a) Using resistances no la
Millersville - MATH - 472
Solutions and ProofsAn Undergraduate Introduction to Financial MathematicsJ. Robert BuchananJ. Robert BuchananSolutions and ProofsExampleP (1 X 2) =3 2 (1) = 5 (5) 10J. Robert BuchananSolutions and ProofsExpected ValueE [X
Millersville - PS - 310
Math 310/520 3302009Solutions to Problem Set 12Interval notation. For the next problem, remember that if a, b R and a b, [a, b] = {x R|a x b}, (a, b) = {x R|a &lt; x &lt; b}, (a, b] = {x R|a &lt; x b}, [a, b) = {x R|a x &lt; b}. In addition: &quot;a x
Mississippi State - ECE - 4512
Data Sheet No. PD60172-EIR2181(4)(S)HIGH AND LOW SIDE DRIVERFeatures Floating channel designed for bootstrap operation Fully operational to +600V Tolerant to negative transient voltage dV/dt immune Gate drive supply range from 10 to 20V U
Air Force Academy - CS - 355
lou001Louis XVA painting of Louis XV at his throne in front of a red curtainfrenchroyaltyLouis-Michel van Loo1760July 1 1990100000cha001An Armenian WomanA portrait of an Armenian woman wearing red clothes and a blue headpiecefrenchportra
Michigan - FY - 200902
February 26, 2008 F b 6 8 8:45 to 11:30 am 1239 Kipke Conference RoomWelcome to Planet BlueRecap of last presentationIntroduced three Planet Blue teams Unveiled the Planet Blue theme l d h l l h Provided schedule for Pilot BuildingsWhat's happe
Michigan - FY - 200903
FACILITIES USERS NETWORK (FUN) MEETINGMarch 26, 2009 8:45 12:00 PM 1239 Kipke Conference RoomWelcome, Introductions, &amp; AnnouncementsFUN 2009 ChairMark C. ScottDuderstadt CenterFUN 2009 Vice ChairMark SedmakMedical School Administration
Mississippi State - WF - 3133
Lecture 6 Physical Environment Nutrients &amp; soils Plant AdaptationWaterWater cycle (hydrology) Terrestrial-aquatic Interface Physical propertiesCharacteristics of WaterHydrogen bonds and polarity Cohesion = &quot;holds together&quot; Adhesion = &quot;holds to
Stanford - BAC - 1042
A Q-f%If9byJS 44C/SDNY REV. 12/2005 CIVIL COVER SHEETThe JS-44 civil cover sheet and the information contained herein neither replace nor supplement the filing and service of pleadings or other papers as required by law, except as provided by lo
Mississippi State - WF - 4313
Fisheries Management WF 4313/6313 Exam I, Fall 2003 Points 12 1.Name: _Modern fisheries management operates most effectively in an environment that recognizes that ecological, social, economic, and political processes affect management success. A
Mississippi State - WF - 4313
Mississippi State - WF - 4313
Mississippi State - WF - 4313
Fisheries Management WF 4313/6313 Exam I, Fall 2002 Points 6 1. Define fisheries management.Name: _142.Who manages fisheries resources? A. List 4 entities (agencies, organizations, types of people, etc.). (8 points)B. Which of these, in you
Mississippi State - WF - 4313
Mississippi State - WF - 4313
Stanford - PH - 195
Ph195a lecture notes for 11/19/01Quantum numbers and complete sets of commuting observablesIn recent lectures we have seen that it is convenient to choose basis states for the Hilbert space that correspond to eigenstates of the Hamiltonian H:jH
Stanford - PH - 125
Ph125a lecture notes, 11/7/00Quantum numbers and complete sets of commuting observablesIn recent lectures we have seen that it is convenient to choose basis states for the Hilbert space that correspond to eigenstates of the Hamiltonian H:j
Michigan - FILE - 930137
OIKOS 94: 403416. Copenhagen 2001Correlation of foliage and litter chemistry of sugar maple, Acer saccharum, as affected by elevated CO2 and varying N availability, and effects on decompositionJ. S. King, K. S. Pregitzer, D. R. Zak, M. E. Kubiske
Michigan - FILE - 930128
Oecologia (2000) 124:432445 Springer-Verlag 2000Carl J. Mikan Donald R. Zak Mark E. Kubiske Kurt S. PregitzerCombined effects of atmospheric CO2 and N availability on the belowground carbon and nitrogen dynamics of aspen mesocosmsReceived: 1
Michigan - FILE - 933772
Soil Biology &amp; Biochemistry 36 (2004) 965971 www.elsevier.com/locate/soilbioAtmospheric nitrate deposition and the microbial degradation of cellobiose and vanillin in a northern hardwood forestJared L. DeForesta,*, Donald R. Zaka,b, Kurt S. Pregit
Mississippi State - JMG - 8803
Michigan - GEOL - 420
Problem set 2. Due Friday 9/23. 1. Show that the gravity inside a uniform spherical shell is zero. 2. Determine the ratio of the centrifugal acceleration to the gravitational acceleration at the Earths equator. 3. The moment of inertia of the Earth i
Mississippi State - CSE - 3813
CSE 3813 Introduction to Formal Languages and AutomataChapter 11 A Hierarchy of Formal Languages and AutomataThese class notes are based on material from our textbook, An Introduction to Formal Languages and Automata, 4th ed., by Peter Linz, publi
McGill - CS - 302
Programming Languages and Paradigms 308-302C Assignment #2Due: May 26, 2002Procedural and Data Abstraction For this assignment we will explore programming in Scheme as a way to implement algorithms that produce both Procedural and Data abstraction.
Idaho - UIWEB - 474
4/27/2009FertilizationHistory Leeuwenhoek(1678)codiscoveredsperm calledthem spermatozoameaningsperm ll d th t i animal Believedspermhadnothingtodowith fertilization 1685 hypothesized that sperm were the seed hypothesizedthatspermweretheseed a
Idaho - UIWEB - 474
4/27/2009AgingToday Senescence Telomerase Caloricrestriction Reactiveoxygen Agingproblems14/27/2009Aging theaccumulationofchangesinanorganism orobjectovertime bj t ti Inhumans changesinphysical,psychological, socialLifespanUSwome
Michigan - FLINT - 360
PHL 360 : Winter 2008Topics for the Third Long Paperhttp:/www.umflint.edu/~simoncu/360Topic 1: Rationality and Time Explain what Parfit says about (a) past desires, (b) the bias towards the future, (c) the bias towards the near, (d) the bias tow
Colorado - ECEN - 5114
ECEN 5114Final ExamDue at my oce (ECOT248) or in my mailbox (ECEE1B55) by 4:00 PM, Thursday May 7, 2009. Use of a calculator or computer, the course notes and any references is permitted (cite any outside references used). No consultation or discus
Idaho - ECE - 420
~ ~(J)\D N~0 N V WWtJ;U W~ &gt;ZC0.Z~ LUw0(J) (J) (J)~LU~ -;-.'&quot; , IV\.9en, .~-i~ \t&quot;'~ ~'-.J V ~nI\)\J ~~N '&quot; c v&quot;~~d&quot;~~\.0~'-.J.s'-h~~~\~\.~:
Air Force Academy - EP - 414
RTEMS ITRON 3.0 Users GuideEdition 1, for RTEMS 4.5.0-beta3 May 1999On-Line Applications Research CorporationPreface1PrefaceThere needs to be a preface to this manual.2RTEMS ITRON 3.0 API Users GuideChapter 1: Task Manager31 Task
Stanford - JDSU - 1023
Case 4:02-cv-01486-CWDocument 1820Filed 11/13/2007Page 1 of 21 2 3 4 5 6 7 8 9 10 11 12 13 14 This Document Relates To: All Actions 15 16 17 18 19 20 21 22 23 24 25 26 27 28[PROPOSED] ORDER GRANTING JDSU DEFS.' MOT. RE. REFERENCE To REGISTRA
Stanford - JDSU - 1023
Case 4:02-cv-01486-CWDocument 1845Filed 11/16/2007Page 1 of 21 2 3 4 5 6 7 8 9 10 11 12 13 14 This Document Relates To: All Actions 15 16 17 18 19 20 21 22 23 24 25 26 27 28[PROPOSED] ORDER GRANTING JDSU DEFS.' MOT. TO EXCLUDE PREVIOUSLY UND
University of Dayton - ACADEMIC - 342
MTH 3421.38 Prove that every subset of a well-ordered set is well-ordered. Solution: Let w W and x w. Let y be a nonempty subset of x. Then y is a nonempty subset of w, so it has a least element. Thus x is well-ordered.
Colorado - CSCI - 4113
Unix System AdministrationChris Schenk Lecture 28 Tuesday Apr 30CSCI 4113, Spring 2009Question How much do you like Chris? A) He puts the first 'e' in awesome B) He makes me want to Bash my Firewall in C) He can lick my left shoe sole D
Stanford - PRIA - 1016
UNITED STATES DISTRICT COURT DISTRICT OF MASSACHUSETTS-X IN RE PRI AUTOMATION, INC. SECURITIES LITIGATION -X NOTICE OF PENDENCY OF CLASS ACTION, HEARING ON PROPOSED SETTLEMENT AND ATTORNEYS' FEE PETITION AND RIGHT TO SHARE IN SETTLEMENT FUND TO: ALL
Stanford - ITWO - 1017
UNITED STATES DISTRICT COURT NORTHERN DISTRICT OF TEXAS DALLAS DIVISIO N ALLEN V. SCHEINER, on Behalf of Himself an d All Others Similarly Situated, Plaintiff, V. i2 TECHNOLOGIES, INC ., SANJIV S . SIDHU, GREGORY A . BRADY, WILLIAM M . BEECHER and AR