pub fn interpolate_multivariate<P, V1, V2, A, A2>(
poly_ring: P,
interpolation_points: V1,
values: Vec<El<<P::Type as RingExtension>::BaseRing>, A2>,
allocator: A,
) -> Result<El<P>, InterpolationError>where
P: RingStore,
P::Type: MultivariatePolyRing,
<<P::Type as RingExtension>::BaseRing as RingStore>::Type: DivisibilityRing + Domain,
V1: VectorFn<V2>,
V2: VectorFn<El<<P::Type as RingExtension>::BaseRing>>,
A: Allocator,
A2: Allocator,
Available on crate feature
unstable-enable
only.Expand description
ยงAvailability
This API is marked as unstable and is only available when the unstable-enable
crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.