Replies: 1 comment 2 replies
-
|
Thanks for the suggestion. To clarify, the interpolation is based on all the supports (even the collocation nodes) and a cubic interpolation is not equivalent to an orthogonal collocation with 3 nodes (since it is based on Lobatto quadrature). However, automatically choosing constant interpolation with |
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.
-
continuous_y = value(y, linear_interpolation);is nice, but shouldn't InfiniteOpt be able to choose which interpolation type is appropriate automatically? For instance, when I useconstant_over_collocation, the appropriate interpolation is a step function, and likewise when I useOrthogonalCollocation(3)it should use a cubic to represent the solution (IIUC). It would help to understand what's going on when I make different choices.Beta Was this translation helpful? Give feedback.
All reactions