Interpolation: Difference between revisions

From Met Dynamics
Jump to navigation Jump to search
md>Scott.Munro
(Created page with "== Description == This article describes '''linear''' and '''cubic spline''' data interpolation methods. == Model theory == {{Under construction|section}} == Excel == {{U...")
 
m (1 revision imported)
(No difference)

Revision as of 07:15, 19 March 2023

Description

This article describes linear and cubic spline data interpolation methods.

Model theory

Under construction icon-blue.svg.png This section is currently under construction. Please check back later for updates and revisions.

Excel

Under construction icon-blue.svg.png This section is currently under construction. Please check back later for updates and revisions.

The interpolation methods may be invoked from the Excel formula bar with the following function calls:

=mdInterp_Linear(known_xs as Range, known_ys as Range, xs as Range)
=mdInterp_CubicSpline(known_xs as Range, known_ys as Range, xs as Range)

Invoking the function with no arguments will print Help text associated with the model, including a link to this page.

References