Concept Flow - Interpolation (interp1)
Define known points x, y
Choose query points xi
Call interp1(x, y, xi)
interp1 finds position of xi in x
Calculate interpolated yi values
Return yi as output
This flow shows how interp1 takes known data points and query points, then calculates interpolated values step-by-step.