Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Evaluation of FDataIrregular observation with only one point not working #616

Open
pcuestas opened this issue Jun 12, 2024 · 0 comments
Open
Labels

Comments

@pcuestas
Copy link
Contributor

pcuestas commented Jun 12, 2024

Bug description summary

When evaluating an FDataIrregular observation with only one point, the returned value is incorrect.

Code to reproduce the bug

from skfda import FDataIrregular
irregular=FDataIrregular(
    start_indices=[0],
    points=[1],
    values=[-1],
)
print(irregular(irregular.points))

Expected result

[[[-1]]]

Actual result

[[[nan]]]

Software versions

scikit-fda version: '0.9.2.dev0'
OS: Ubuntu 22

Additional context

However, the evaluation of FDataIrregular observations which have more than one measurement is correct:

>>> irregular=FDataIrregular(
...     start_indices=[0],
...     points=[1, 2],
...     values=[-1, -2],
... )
>>> irregular(irregular.points)
array([[[-1.],
        [-2.]]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant