Difference between revisions of "Interp"

From MoiWiki
Jump to navigationJump to search
(Created page with "=Function= Takes support values and makes n evenly distibuted interpolation values between them (start/end value included) I nterpolation strategy: * linear * Catumul-Rom *...")
 
 
Line 21: Line 21:
 
=properties=
 
=properties=
 
*Mode:
 
*Mode:
   # linear
+
   linear
   # Catumul-Rom
+
   Catumul-Rom
   # Cubic
+
   Cubic
   # Cosine
+
   Cosine
   # Hermite
+
   Hermite
   # Fritsch-Carlson
+
   Fritsch-Carlson
 
* Array
 
* Array
 
* Count integer value
 
* Count integer value
 
  
 
=Type=
 
=Type=

Latest revision as of 00:14, 2 December 2016

Function

Takes support values and makes n evenly distibuted interpolation values between them (start/end value included) I nterpolation strategy:

  • linear
  • Catumul-Rom
  • Cubic
  • Cosine
  • Hermite
  • Fritsch-Carlson


Inputs

  • Array type:numarray minimum 2 values to interpolate between
  • count type:numarray an integer for the number of interpolation values

outputs

  • [numarray]]

properties

  • Mode:
  linear
  Catumul-Rom
  Cubic
  Cosine
  Hermite
  Fritsch-Carlson
  • Array
  • Count integer value

Type

Basic/Interp


Back to Overview_of_the_sub_menues