ME 123 Computer Applications I

Slides:



Advertisements
Similar presentations
Solving Quadratic Equations Using the Zero Product Property
Advertisements

Selection Statements Make a decision based on conditions Allows the computer to be intelligent.
Inequalities and their Graphs Objective: To write and graph simple inequalities with one variable.
Numerical Computation Lecture 4: Root Finding Methods - II United International College.
Splash Screen Inequalities Involving Absolute Values Lesson5-5.
Reading Quiz A light bulb is connected to a battery so that current flows through the bulb, which gives off light. Choose the correct statement: The amount.
Today: 1. Hand back/review Test 1 2. Lecture on Section 3.1, with HW 3.1 due tomorrow 3. Daily Quiz at end of hour, on Test 1 questions.
Lecture 4 More Examples of Karnaugh Map. Logic Reduction Using Karnaugh Map Create an Equivalent Karnaugh Map Each circle must be around a power of two.
1 CENG 707 Data Structures and Algorithms Nihan Kesim Çiçekli Department of Computer Engineering Middle East Technical University Fall 2010.
Monday, 9/23/02, Slide #1 CS 106 Intro to CS 1 Monday, 9/23/02  QUESTIONS??  Today:  Discuss Lab 3  Do Exercises  Introduction to functions  Reading:
ME 221Lecture 91 ME 221 Statics LECTURE #9 Sections:
General Computer Science for Engineers CISC 106 Lecture 33 Dr. John Cavazos Computer and Information Sciences 05/11/2009.
General Computer Science for Engineers CISC 106 Lecture 05 Dr. John Cavazos Computer and Information Sciences 2/20/2009.
Text Exercise 1.30 (a) (b) (c) First, make a sketch representing this probability; then find the probability. 16 – 11 z = ——— =
MA 102 Statistical Controversies Monday, February 18, 2002 Today: Discuss Chapter 9 concepts and exercises Review Part 1 of the text Test 1 question types.
1 Business 90: Business Statistics Professor David Mease Sec 03, T R 7:30-8:45AM BBC 204 Lecture 20 = Finish Chapter “The Normal Distribution and Other.
Chapter 6 Finding the Roots of Equations
CSCI 51 Introduction to Computer Science Dr. Joshua Stough January 20, 2009.
More While Loop Examples CS303E: Elements of Computers and Programming.
C++ Programming Language Lecture 2 Problem Analysis and Solution Representation By Ghada Al-Mashaqbeh The Hashemite University Computer Engineering Department.
Inequalities and their Graphs Objective: To write and graph simple inequalities with one variable.
Newton’s Method, Root Finding with MATLAB and Excel
Numerical Methods Solution of Equation.
ITEC 109 Lecture 11 While loops. while loops Review Choices –1 st –2 nd to ?th –Last What happens if you only use ifs? Can you have just an else by itself?
Slide 1 DSCI 5180: Introduction to the Business Decision Process Spring 2013 – Dr. Nick Evangelopoulos Lecture 1: Introduction to 5180 class Review of.
ME 123 Computer Applications I Lecture 16: More Matlab Programming: Secant Method, Review 4/4/03.
3.1.3 Program Flow control Structured programming – SELECTION in greater detail.
Chapter 11: Graphing. Bar Charts Pie Charts Line Graphs.
Inequalities and their Graphs Objective: To write and graph simple inequalities with one variable.
CSE 330: Numerical Methods. Introduction The bisection and false position method require bracketing of the root by two guesses Such methods are called.
Exams hints The exam will cover the same topics covered in homework. If there was no homework problem on the topic, then there will not be any exam question.
Inequalities and their Graphs
Inequalities and their Graphs
Welcome to the course! Meetings and communication: AC meetings
Learn To Fix Errors On Dell PC. We are a third-party service provider for Dell users in Nederland. Call us on Website:
REPETITION STATEMENTS
Read Chapters 5 and 6 of the textbook
Inequalities and their Graphs
ME 123 Computer Applications I Lecture 24: Character Strings 4/18/03
Solving Inequalities.
Iteration: Beyond the Basic PERFORM
ME 123 Computer Applications I
Test Correction Guidelines
SOLUTION OF NONLINEAR EQUATIONS
Subscript and Summation Notation
Solving Inequalities.
ME 123 Computer Applications I Lecture 29: Modeling 5/5/03
ME 123 Computer Applications I Lecture 23: Advanced Graphics 4/17/03
Recapitulation of Lecture 8
Lecture 5.3: Graph Isomorphism and Paths
Notes Over 1.7 Solving Inequalities
CHAPTER 5: Control Flow Tools (if statement)
Notes Over 1.7 Solving Inequalities
CS150 Introduction to Computer Science 1
Solving Rational Equations
Creating your game.
ME 123 Computer Applications I Lecture 25: MATLAB Overview 4/28/03
MATH 331: Partial Differential Equations
Recapitulation of Lecture 11
Recapitulation of Lecture 5
Lecture 9: Implementing Complex Logic
Homework 1 (May 31) Material covered: Episodes 1 and 2
ME 123 Computer Applications I
ME 123 Computer Applications I Lecture 11: More on For loop 3/27/03
Recapitulation of Lecture 13
ME 123 Computer Applications I Lecture 4: Vectors and Matrices 3/14/03
ME 123 Computer Applications I Lecture 8: System of Equations 3/21/03
Recapitulation of Lecture 12
ME 123 Computer Applications I Lecture 5: Input and Output 3/17/03
ME 123 Computer Applications I Lecture 7: Basic Functions 3/20/03
Presentation transcript:

ME 123 Computer Applications I Lecture 18: Statistical Functions 4/8/03

ME 123 Computer Applications I Feedback Exam 1 feedback: Problem 5 is meant to be a user defined function. Quite a few of you missed that problem specification. In Problem 6, the complement of “greater than” is “less than or equal to”, not just “less than”. The while loop statement would serve this problem well. If you receive a score below 80%, you need to review the materials more! See me if you need additional help. Homework feedback: The definition of error for the secant method is NOT the same as that for the bisection method. For the secant method, For the bisection method, Since the secant method makes use of the functional information, it converges much faster than the bisection method. Lecture 18 ME 123 Computer Applications I

ME 123 Computer Applications I Road Map of Lecture 18 Solutions to Exam 1 Solutions to HW 4-4 More exercises on MATLAB programming: computing statistics work on the flow chart first (no matter how simple it may be) emphasis on modular programming design Lecture 18 ME 123 Computer Applications I