interp1

Linear 1-D data interpolation

📝 Syntax

  • vq = interp1(x, v, xq)

  • vq = interp1(x, v, xq, 'linear')

  • vq = interp1(v, xq)

  • vq = interp1(v, xq, 'linear')

📥 Input argument

  • x - Sample points: vector.

  • v - Sample values: vector, matrix.

  • xq - Query points: scalar, vector, matrix.

📤 Output argument

  • vq - Interpolated values: scalar, vector, matrix.

📄 Description

vq = interp1(x, v, xq) returns interpolated values of a 1-D function at specific query points using linear interpolation.

📚 Bibliography

de Boor, C., A Practical Guide to Splines, Springer-Verlag, 1978.

💡 Example

🕔 History

Version
📄 Description

1.0.0

initial version

Last updated

Was this helpful?