Files
2026-03-13 11:24:41 +08:00

2 lines
75 B
Matlab

function h = interptable(X, Y, u)
h = interp1(X, Y, u, 'linear', 'extrap');