# interpolation **Repository Path**: mirrors_mljs/interpolation ## Basic Information - **Project Name**: interpolation - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-22 - **Last Updated**: 2026-03-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # interpolation Newton and Lagrange interpolating methods. It returns the polynomial of maximum degree given the set of centers. var x = math.matrix([0.0, 1.2]); var y = math.matrix([1.0, 0.362358]); var f = Interpolate.newton(x, y); console.log(f(0.5)) var x = math.matrix([0.0, 1.2]); var y = math.matrix([1.0, 0.362358]); var f = Interpolate.lagrange(x, y); console.log(f(0.5))