Member of the approximation class.
interpft(a, b)
interpft(a, b, c)
d = interpft(a, b)
d = interpft(a, b, c)
Uses the Fourier transform to perform one-dimensional interpolation.
| Name | Description | ||||
| a | Specifies a vector or matrix. | ||||
| b | Specifies the number of values to interpolate. | ||||
| c | Specifies whether to compute the column-wise or the row-wise integrals of a. c is a scalar that accepts the following values.
|
| Name | Description |
| d | Returns the interpolated vector or matrix. |
A = [1, 2, 3, 4, 5];
B = 12;
C = interpft(A, B, 1)