ME 123 Computer Applications I Lecture 25: MATLAB Overview 4/28/03

Slides:



Advertisements
Similar presentations
Chapter 6 Differential Equations
Advertisements

MATLAB EXAMPLES Initial-value problems
Numerical Solution of Nonlinear Equations
Engineering H192 - Computer Programming The Ohio State University Gateway Engineering Education Coalition Lect FXP. 1Winter Quarter Course Wrap Up and.
MECH300H Introduction to Finite Element Methods Lecture 2 Review.
CVEN Exam 1 Review. Matlab Basic commands and syntax Basic commands and syntax Creation of functions and programs Creation of functions and programs.
CVEN Exam 1 Review. Matlab.m files Matlab.m files Programming: FOR, WHILE, IF and FUNCTION Programming: FOR, WHILE, IF and FUNCTION Taylor Series.
Engineering H192 - Computer Programming The Ohio State University Gateway Engineering Education Coalition Lect FXP. 1Winter Quarter Course Wrap Up and.
CISE-301: Numerical Methods Topic 1: Introduction to Numerical Methods and Taylor Series Lectures 1-4: KFUPM.
Area of a single trapezoid = h
MECN 3500 Inter - Bayamon Lecture Numerical Methods for Engineering MECN 3500 Professor: Dr. Omar E. Meza Castillo
Exercise problems for students taking the Programming Parallel Computers course. Janusz Kowalik Piotr Arlukowicz Tadeusz Puzniakowski Informatics Institute.
CMPS1371 Introduction to Computing for Engineers NUMERICAL METHODS.
4.6 Numerical Integration Trapezoid and Simpson’s Rules.
4.6 Numerical Integration. The Trapezoidal Rule One method to approximate a definite integral is to use n trapezoids.
1 Numerical Integration Section Why Numerical Integration? Let’s say we want to evaluate the following definite integral:
MA2213 Lecture 4 Numerical Integration. Introduction Definition is the limit of Riemann sums I(f)
CISE-301: Numerical Methods Topic 1: Introduction to Numerical Methods and Taylor Series Lectures 1-4: KFUPM CISE301_Topic1.
CISE301_Topic11 CISE-301: Numerical Methods Topic 1: Introduction to Numerical Methods and Taylor Series Lectures 1-4:
EE 3561_Unit_1(c)Al-Dhaifallah EE 3561 : - Computational Methods in Electrical Engineering Unit 1: Introduction to Computational Methods and Taylor.
Numerical Methods Applications of Loops: The power of MATLAB Mathematics + Coding 1.
Application of Differential Applied Optimization Problems.
Review Taylor Series and Error Analysis Roots of Equations
ENGR 1320 Final Review - Programming Major Topics: – Functions and Scripts – Vector and Matrix Operations in Matlab Dot product Cross product – Plotting.
Vectors and Matrices In MATLAB a vector can be defined as row vector or as a column vector. A vector of length n can be visualized as matrix of size 1xn.
Applied Numerical Method for Engineers and Scientists
Professor Walter W. Olson Department of Mechanical, Industrial and Manufacturing Engineering University of Toledo Performance & Stability Analysis.
Scientific Computing General Least Squares. Polynomial Least Squares Polynomial Least Squares: We assume that the class of functions is the class of all.
MECH345 Introduction to Finite Element Methods Chapter 1 Numerical Methods - Introduction.
MA/CS 375 Fall MA/CS 375 Fall 2002 Lecture 12.
Quadrature rules 1Michael Sokolov / Numerical Methods for Chemical Engineers / Numerical Quadrature Michael Sokolov ETH Zurich, Institut für Chemie- und.
BE207 Numerical Analysis using Matlab Lecturer DR Abdullah Awad Faculty of Engineering.
Intelligent Numerical Computation1 Numerical Analysis MATLAB programming Numerical Methods Applications Contents.
ESO 208A/ESO 218 COMPUTATIONAL METHODS IN ENGINEERING.
ME 123 Computer Applications I Lecture 16: More Matlab Programming: Secant Method, Review 4/4/03.
Assignment 1: due 1/19/16 Estimate all of the zero of x3-x2-2x+1 graphically. Write a MatLab code for Newton’s method. Use your code to refine the graphical.
CHAPTER 3 NUMERICAL METHODS
Welcome to Computers in Civil Engineering 53:081 Spring 2003
TOPIC : 7 NUMERICAL METHOD.
LECTURE 4 OF SOLUTIONS OF NON-LINEAR EQUATIONS OBJECTIVES
Computer Application in Engineering Design
ECE 1304 Introduction to Electrical and Computer Engineering
Area of a single trapezoid = h
Ellipse Fitting COMP 4900C Winter 2008.
ENGG 1801 Engineering Computing
ME 123 Computer Applications I
Numerical Analysis Lecture 7.
Numerical Analysis Lecture 45.
ME 123 Computer Applications I Lecture 24: Character Strings 4/18/03
Unit I C Language Review Ref. Book: Yashavant Kanetkar, “Let Us C”, BPB Publications, 10/E, 2010.
Area of a single trapezoid = h
MATH-321 In One Slide MATH-321 & MATLAB Command.
WELCOME TO MY CLASS NUMERICAL METHOD Name : Masduki
Euler’s Method of Approximation and Slope Fields
ME 123 Computer Applications I Lecture 23: Advanced Graphics 4/17/03
13.9 Day 2 Least Squares Regression
Vectors and Matrices In MATLAB a vector can be defined as row vector or as a column vector. A vector of length n can be visualized as matrix of size 1xn.
Recapitulation of Lecture 8
Assignment 1: due 1/16/19 Estimate all of the zero of x3-x2-2x+1 graphically. Write a MatLab code for Newton’s method. Use your code to refine the graphical.
Area of a single trapezoid = h
Assignment 1: due 1/17/19 Estimate all of the zero of x3-x2-2x+1 graphically. Write a MatLab code for Newton’s method. Use your code to refine the graphical.
Recapitulation of Lecture 11
ME 123 Computer Applications I
ME 123 Computer Applications I Lecture 11: More on For loop 3/27/03
Recapitulation of Lecture 13
CISE-301: Numerical Methods Topic 1: Introduction to Numerical Methods and Taylor Series Lectures 1-4: KFUPM CISE301_Topic1.
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 25: MATLAB Overview 4/28/03

ME 123 Computer Applications I Reminder Exam 2 will be on tomorrow (2 parts) 1st part: closed book, closed notes, closed computer 2nd part: closed book, closed notes, open computer Lecture 25 ME 123 Computer Applications I

ME 123 Computer Applications I Road Map of Lecture 25 Corrections to final project description Review on course materials Address any question on Exam 2 Lecture 25 ME 123 Computer Applications I

ME 123 Computer Applications I Review for Exam 2 Definition of scalar, vector, matrix; naming convention 2-D plotting (line, marker, labeling, legend, etc.) Input/Output (command line, data file, etc.) User defined function (input/output list), m-file Solution to system of equations (unique solution) if statement, relational operators for loop switch statement while loop Lecture 25 ME 123 Computer Applications I

Review for Exam 2 (cont’d) Solution to over-constrained system of equations (least square solution), includes curve fitting applications Advanced plotting Character strings Integration of if statements, if loops, while loops and function subprograms to solve complex problems Examples: Partial sum calculator Prime number finder Square root approximator Statistics menu Lecture 25 ME 123 Computer Applications I

Review for Exam 2 (cont’d) Examples (cont’d): Numerical integration: Trapezoidal method Rectangular method Simpson’s rule Root finding: Bisection method Secant method Newton-Raphson method Time marching: Explicit Euler 4th order Runge-Kutta Lecture 25 ME 123 Computer Applications I