Replies: 1 comment 2 replies
-
Can you edit your question to include a minimal reproducible example of the issue? I'd like to help investigate the issue, but I don't know what |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to do a piecewise linear interpolation using the following function definition. With and without @jit function decorator would end up with different results, when I apply the same input value. I really don't get why adding @jit will change the function.
This part helps me to select a list of one-dimensional vectors from v matrix. Which defines the target functions, and I want to interpolate the value of x.
f(ws) = v_1 interpolate value f(x_1)
f(ws) = v_2 interpolate value f(x_2)
f(ws) = v_3 interpolate value f(x_3)
...
f(ws) = v_n. interpolate value f(x_n)
The following is the funciton.
Any idea helps, thanks a lot!
Beta Was this translation helpful? Give feedback.
All reactions