2D Array Interpolation in MATLAB
Last Updated :
06 Dec, 2022
In this article, we are going to discuss “2D Array Interpolation” in MATLAB with the help of two linspace() and interp2() functions.
Functions Used
linspace( )
The linspace() function is used for the generation linearly spaced vector.
Syntax:
linspace(a, b)
linspace(a, b, n)
Here,
linspace(a, b) is used to return a row vector of 100 evenly spaced points in between “a” and “b”.
linspace(a, b, n) is used to return a row vector of “n” points, the spacing between the points is (x2-x1)/(n-1).
Parameters: This function accepts three parameters, which are illustrated below:
- a: This is the specified first value.
- b: This is the specified second value.
- n: This is the specified number of points contained in the generated row vector.
Return Value: It returns the generated row vector of “n” points linearly spaced between and including “a” and “b”.
Example:
Output:

interp2( )
The interp2() function is used to Interpolate for 2-D gridded data in a mesh grid format.
Syntax:
interp2(X,Y,V,Xq,Yq)
interp2(V,Xq,Yq)
interp2(V)
interp2(V,k)
interp2(___,method)
interp2(___,method,extrapval)
Here,
interp2(X, Y, V, Xq, Yq) function is used to return interpolated values of a specified function of two variables at specific query points using linear interpolation. Its result passes through the original sampling of the function. Here the coordinates of the sample points reside in “X” and “Y”, “V” contains the corresponding function values at each sample point, and “Xq”, “Yq” contains the coordinates of the query points.
interp2(V, Xq, Yq) function is for the default grid of sample points. These points cover the rectangular region, X=1:n and Y=1:m, where [m,n] = size(V).
interp2(V) function is used to return the interpolated values on a refined grid formed by dividing the interval between sample values once in each dimension.
interp2(V, k) function is used to return the interpolated values on a refined grid formed by repeatedly halving the intervals k times in each dimension. This results in 2^k-1 interpolated points between sample values.
interp2(___, method) function specifies an alternative interpolation function such as ‘linear’, ‘nearest’, ‘cubic’, ‘makima’, or ‘spline’. Its default value is ‘linear’.
interp2(___, method, extrapval) function specifies ‘extrapval ‘, which is a scalar value assigned to all queries that lie outside the domain of the sample points.
Parameters: This function accepts some parameters which are illustrated below:
- X: It is the first coordinate for the sample point.
- Y: It is the second coordinate for the sample point.
- V: This is used as size(V) which is equivalent to [m, n].
- Xq: This contains the coordinates of the query points which is equivalent to X=1:n
- Yq: This contains the coordinates of the query points which is equivalent to X=1:m
- k: It is the interval.
- method: It specifies an alternative interpolation function such as ‘linear’, ‘nearest’, ‘cubic’, ‘makima’, or ‘spline’. Its default value is ‘linear’.
- extrapval: It is a scalar value assigned to all queries that lie outside the domain of the sample points.
Return Value: It returns the interpolated 2-D array.
Example:
Matlab
[X,Y] = meshgrid(-4:4);
V = peaks(X,Y);
[Xq,Yq] = meshgrid(-4:0.25:4);
title( 'Linear Interpolation Using Finer Grid' );
Vq = interp2(X,Y,V,Xq,Yq);
|
Output:

2D Array Interpolation
Example 1:
Matlab
A=[1 2 3
4 5 6
7 8 9];
x = linspace(1, 2, 4);
result = interp2(A, x(:), x)
|
Output:

Example 2:
Matlab
A=[0.69 1.76 0.089 2.0012;
5.89 1.25 0.47 0.55;
1.06 1.25 1.134 4.163;
2 1.7 0 2.4];
x = linspace(1, 3, 7);
result = interp2(A, x(:), x)
|
Output:

Similar Reads
3D Array Interpolation MATLAB
Interpolation is a method of finding the value of queried data points based on the trend created by existing data points. MATLAB provides many options to perform interpolation on data of N-dimensions. In this article, we shall discuss how to interpolate data in a 3D array with the help of some exam
3 min read
Integration in MATLAB
Integration is defined as the process of finding the anti derivative of a function. It is used to calculate area, volume, displacement, and many more. In this article, we will see how to perform integration on expressions in MATLAB. There are two types of Integration: Indefinite integral: Let f(x) b
3 min read
Linear Interpolation in MATLAB
Interpolation is a numerical method of finding new data points by finding a pattern in a given set of discrete data points. There are various types and methods of interpolation in the field of Numerical Analysis such as linear interpolation, cubic interpolation, spline interpolation, etc. The key p
3 min read
Cubic Spline Data Interpolation in MATLAB
Cubic spline interpolation is a type of interpolation in which data of degree 3 or less is interpolated. Refer to this article to understand the proper theoretical concept of Cubic Spline Interpolation. Now we will look at how to perform cubic spline interpolation in MATLAB. Â MATLAB provides a simpl
1 min read
Filtering After Unsampling in MATLAB Interpolation
Upsampling with filtering gives the interpolated signal. The Upsampling process just adds zero-valued samples to the given input signal. There is no practical significance of zero-valued samples to obtain interpolated signals. Indeed these zero-valued samples should be converted into their approxima
3 min read
Interpolation in Python
Interpolation in Python refers to the process of estimating unknown values that fall between known values. This concept is commonly used in data analysis, mathematical modeling, and graphical representations. Python provides several ways to perform interpolation, including the use of libraries like
2 min read
Cell Arrays in MATLAB
In MATLAB, cell arrays are a type of arrays which stores elements of different data types and sizes in different cells, or one could say that cell arrays allow users to store heterogeneous data into a single array. For example, let us create a cell array which holds the name and age of a person. Exa
2 min read
Linear Interpolation Formula
Linear Interpolation Formula is a method that constructs the new data points from the given set of data points. Linear interpolation is used for fitting curves using linear polynomials. It finds the unknown values in the table. What is the Linear Interpolation Formula?The formula of linear interpola
4 min read
Nearest-Neighbor Interpolation Algorithm in MATLAB
Nearest neighbor interpolation is a type of interpolation. This method simply determines the "nearest" neighboring pixel and assumes its intensity value, as opposed to calculating an average value using some weighting criteria or producing an intermediate value based on intricate rules. Interpolatio
3 min read
Double Integral in MATLAB
The double integral of a non-negative function f(x, y) defined on a region in the plane tells us about the volume of the region under the graph. The double integral of a function of two variables, f(x, y) over the region R can be expressed as follows : [Tex]\int \int_{R}^{} f(x,y)dA = \int \int_{R}^
3 min read