Hello,
I'm attempting to take a 32 entry array, expand it to 1024 entries with the 32 original entries evenly spaced. Then, I need to linearly interpolate between each of those 32 spread-out entries and fill in the remaining 30 blank entries in between each original 32 now evenly spaced entries.
Ex:
Take the original:
1
2
3
...
30
31
And create the expanded:
0
(1/31 * (entry 0 - entry 1))
(2/31 * (entry 0 - entry 1))
...
(31/31 * (entry 0 - entry 1))
1
(1/31 * (entry 1 - entry 2))
...