Owning Class: approximation
Requires: MathScript RT Module
interpolateft(a, b)
interpolateft(a, b, c)
d = interpolateft(a, b)
d = interpolateft(a, b, c)
Legacy Name: interpft
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 = interpolateft(A, B, 1)