Closed m5signorini closed 1 year ago
Patch coverage: 100.00
% and project coverage change: +0.02
:tada:
Comparison is base (
d5efb95
) 85.63% compared to head (b6b7bb1
) 85.66%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
Currently, when doing the inner product between different types of functional data objects (for example, between FDataGrid and FDataBasis) if the functions are multivariate, then the product fails.
This is an error that occurs when using the method
_inner_product_integrate
, which is not usually called when dealing with the same types of functional objects. However, when using generalCallable
objects or when mixing types, it is called; failing when dealing with more than one variable.This pull request aims to solve this issue while adding a new test for the
inner_product
. This test ensures that the product is correctly calculated betweenFDataGrid
andFDataBasis
objects.