fastcubicinterp
fastcubic interpolation
fastcubicinterp(a, w, x, y, z): out1Arguments:
Arguments
| Name | Type | Default | Description |
|---|---|---|---|
| a | number | In the leftmost inlet, this is the input value to be interpolated. | |
| w | number | Set's the value for the 'w' control point. This is the leftsmost value of fastcubicinterp. | |
| x | number | Set's the value for the 'x' control point. This is the second value of fastcubicinterp. The output curve is the segment between the middle two points (x and y). | |
| y | number | Set's the value for the 'y' control point. This is the third value of fastcubicinterp. The output curve is the segment between the middle two points (x and y). | |
| z | number | Set's the value for the 'z' control point. This is the rightmost most value of fastcubicinterp. |
Returns
| Name | Type | Description |
|---|---|---|
| out1 | number | The output curve is the segment between the middle two points (x and y). |