Mech4740 Numerical Methods, Hong Kong University of Science and Technology. 1 Part Five Curve Fitting.

Slides:



Advertisements
Similar presentations
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 ~ Curve Fitting ~ Least Squares Regression Chapter.
Advertisements

Line Plots and Histograms Similar but Different. Line Plots Easy and visual way to organize data. Easy and visual way to organize data. consists of a.
Curve fit metrics When we fit a curve to data we ask: –What is the error metric for the best fit? –What is more accurate, the data or the fit? This lecture.
Mech300 Numerical Methods, Hong Kong University of Science and Technology. 1 Part Three Linear Algebraic Equations.
Mech300 Numerical Methods, Hong Kong University of Science and Technology. 1 Part Six Numerical Differentiation and Integration.
Numerical Methods for Engineers MECH 300 Hong Kong University of Science and Technology.
Function Approximation
Curve-Fitting Regression
Types of Data Displays Based on the 2008 AZ State Mathematics Standard.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 25 Regression Analysis-Chapter 17.
The Hong Kong University of Science and Technology MECH 251 CAD/CAM MECH251 LABORATORY CLASS SolidWorks & MasterCAM learning.
Lesson #17 Sampling Distributions. The mean of a sampling distribution is called the expected value of the statistic. The standard deviation of a sampling.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 22 CURVE FITTING Chapter 18 Function Interpolation and Approximation.
Mech300 Numerical Methods, Hong Kong University of Science and Technology. 1 Part Four Optimization.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 24 Regression Analysis-Chapter 17.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 21 CURVE FITTING Chapter 18 Function Interpolation and Approximation.
Population Proportion The fraction of values in a population which have a specific attribute p = Population proportion X = Number of items having the attribute.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 ~ Curve Fitting ~ Least Squares Regression Chapter.
SE-280 Dr. Mark L. Hornick Numerical Integration.
CPE 619 Simple Linear Regression Models Aleksandar Milenković The LaCASA Laboratory Electrical and Computer Engineering Department The University of Alabama.
Simple Linear Regression Models
Choosing and using statistics to test ecological hypotheses
Institute for Statistics and Econometrics Economics Department Humboldt University of Berlin Spandauer Straße Berlin Germany CONNECTED TEACHING.
Using Normal Distribution to Approximate a Discrete Distribution.
Confidence Intervals for Means. point estimate – using a single value (or point) to approximate a population parameter. –the sample mean is the best point.
Quantitative Skills 1: Graphing
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 4 Curve Fitting.
Data Handling & Analysis BD7054 Scatter Plots Andrew Jackson
The Scientific Method Honors Biology Laboratory Skills.
● Final exam Wednesday, 6/10, 11:30-2:30. ● Bring your own blue books ● Closed book. Calculators and 2-page cheat sheet allowed. No cell phone/computer.
Chapter 16 The Elaboration Model Key Terms. Descriptive statistics Statistical computations describing either the characteristics of a sample or the relationship.
1 Statistical Distribution Fitting Dr. Jason Merrick.
Number of vacations in past 5 years
Chapter 8 Curve Fitting.
Curve-Fitting Regression
Inference for Regression Simple Linear Regression IPS Chapter 10.1 © 2009 W.H. Freeman and Company.
Analysis of Residuals ©2005 Dr. B. C. Paul. Examining Residuals of Regression (From our Previous Example) Set up your linear regression in the Usual manner.
LECTURE 3: ANALYSIS OF EXPERIMENTAL DATA
Testing Random-Number Generators Andy Wang CIS Computer Systems Performance Analysis.
June 30, 2008Stat Lecture 16 - Regression1 Inference for relationships between variables Statistics Lecture 16.
Principles of Extrapolation
Curve Fitting Introduction Least-Squares Regression Linear Regression Polynomial Regression Multiple Linear Regression Today’s class Numerical Methods.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 ~ Curve Fitting ~ Least Squares Regression.
Chapter 20 Statistical Considerations Lecture Slides The McGraw-Hill Companies © 2012.
Equations, Symbols and Graphs Unit 1 – Introduction to Physics.
Inference for a population mean BPS chapter 16 © 2006 W.H. Freeman and Company.
USING GRAPHING SKILLS. Axis While drawing graphs, we have two axis. X-axis: for consistent variables Y-axis: for other variable.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Applied Numerical Methods With MATLAB ® for Engineers.
Part 5 - Chapter
Part 5 - Chapter 17.
Basic Estimation Techniques
Data, Tables & Graphs “…the kind of question you ask determines the kind of data you collect” Handbook, p11.
Part Three. Data Analysis
Ms jorgensen Unit 1: Statistics and Graphical Representations
AP Statistics: Chapter 7
CSE 4705 Artificial Intelligence
Basic Estimation Techniques
NUMERICAL DIFFERENTIATION AND INTEGRATION
Statistical Methods For Engineers
Chapter 12 Curve Fitting : Fitting a Straight Line Gab-Byung Chae
Part 5 - Chapter 17.
MATH 2140 Numerical Methods
Lesson 5.7 Predict with Linear Models The Zeros of a Function
Population Proportion
Simple Linear Regression
Locomotive Test and CI for Two Proportions Sample X N Sample p
LG: I can assess the reliability of a linear model
Higher National Certificate in Engineering
The Practice of Statistics
Presentation transcript:

Mech4740 Numerical Methods, Hong Kong University of Science and Technology. 1 Part Five Curve Fitting

Mech4740 Numerical Methods, Hong Kong University of Science and Technology. 2 Motivation In all practical engineering cases, the sampling data are acquired at discrete points. x x y x = c sampling points interpolation points Curve fitting tries to fit a continuous curve through the sampling data that can then define the function value at any point by interpolation. That means the function values at points other than these sampling points are undefined; but they are wanted in many applications. x y In many cases, it is not required to find a curve that fit exactly every sampling point; instead a curve (e.g. the blue line) that shows the trend of the function is wanted. This is called regression. Example: how to prove g = 9.8 m/s 2 ?

Mech4740 Numerical Methods, Hong Kong University of Science and Technology. 3 Noncomputer Methods for Curve Fitting Visually sketch a line that conforms to the data (inaccurate) Connect the data points consecutively by lines segments (significant errors if the data are not evenly spaced or the underlying relationship is highly curvilinear) Connect the data points consecutively by simple curves (too tedious and difficult to do manually)

Mech4740 Numerical Methods, Hong Kong University of Science and Technology. 4 Simple Statistics

Mech4740 Numerical Methods, Hong Kong University of Science and Technology. 5 In most engineering applications, the sampling data set conforms to the normal distribution if the size of the data set is sufficiently large. For the normal distribution, the range defined by and will encompass approximately 68 percent of the total measurement. Similarly, the range between and will encompass approximately 95%. The Normal Distribution histogram normal distribution

Mech4740 Numerical Methods, Hong Kong University of Science and Technology. 6 Overall Structure