Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Hello everyone
I want to perform an interpolation, but it tells me that the elements of the vector must be in ascending order, what I can do in this case?
Thanks in advance.
Solved! Go to Solution.
As the values of your vector VX are in descending order you may simply use reverse(VX) and reverse(VY) instead of VX and VY.
As the values of your vector VX are in descending order you may simply use reverse(VX) and reverse(VY) instead of VX and VY.
Thanks Werner