Download presentation
Presentation is loading. Please wait.
Published byMorris McCormick Modified over 9 years ago
2
Numerical Operations S. Awad, Ph.D. M. Corless, M.S.E.E. E.C.E. Department University of Michigan-Dearborn Introduction to Matlab: Numerical Interpolation
3
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 2 Interpolation Topics n 1D Interpolation 1D Interpolation n Interp1 Command Interp1 Command n Spline Command Spline Command n 2D Interpolation 2D Interpolation n Interp2 Command Interp2 Command
4
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 3 1-D Interpolation n Given xdata and ydata n Want to estimate the values of the function: xi=[xi(1) xi(2) … ]’ % values of x The command interp1 is used for One Dimensional Interpolation
5
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 4 interp1 Command yi=interp1(xdata,ydata,xi,method) Where the method of interpolation can be: ‘linear’ for linear interpolation ‘spline’ for Spline Interpolation ‘cubic’ for Cubic Interpolation
6
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 5 A Coarse Sine Wave » xdata=[0:pi/4:2*pi]'; » ydata=sin(xdata); » plot(xdata,ydata); » title('Course Sine Wave'); » xlabel('xdata'); » ylabel('ydata');
7
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 6 Interpolated Sine Wave » xi=[0:pi/64:2*pi]'; » yi=interp1(xdata, ydata,xi,'spline'); » plot(xi,yi) » title('Interpolated Sine Wave'); » xlabel('xi'); » ylabel('yi');
8
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 7 Good Fit & Error n Check for Good Fit » plot(xi,sin(xi),'r',xi,yi,'x'); n Check For Error » plot(xi,(yi-sin(xi)));
9
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 8 Spline Use spline for a cubic spline interpolation method » yi=spline(xdata,ydata,xi); » plot(xi,yi); » title('Cubic Spline Interpolation'); » xlabel('xi'); » ylabel('yi');
10
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 9 2-D Interpolation n Consider the following sheet of metal with the following temperatures at different points: n We will estimate the temperatures on a finer scale
11
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 10 Plot Original Mesh n Set up Matrices in Matlab » z=[82 81 80 82 84 79 63 61 65 81 84 84 82 85 86]; » xdata =[1:5]; » ydata=[1:3]'; n Plot the Original Mesh » mesh(xdata,ydata,z); » title('Original Metal Temps'); » zlabel('temp');
12
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 11 Original Mesh n Course n Concave
13
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 12 Finer 2-D Interpolation Estimate Temperature Surface to a finer scale using the interp2 command » xi=[1:0.1:5]; » yi=[1:0.2:3]'; » zi=interp2(xdata,ydata,z,xi,yi,'cubic'); % or ‘linear’ or ‘spline’ » mesh(xi,yi,zi); » title('2D Interp Metal Temps'); » zlabel('temp');
14
Numerical Operations: U of M-Dearborn ECE Department Introduction to MATLAB and its Toolboxes Interpolation 13 2-D Interpolated Mesh n Smooth n Concave
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.