Open kay-ro opened 1 week ago
The format of the returned 2d arrays for the pcf data and for the distances and angles is different. In particular, the pcf data has to be transposed. Possible bug fix (in amep.spatialcor.pcf_angle
):
Change the return from
return res, R, T
to
return res.T, R, T
This should already fix the bug.
Description:
Running the
evaluate.PCFangle
function fails due to an error in incorrect shapes.Code for reproduction:
Error message:
(500, 100) (100, 500) (100, 500)
Python and AMEP versions:
1.0.2
Additional information:
No response
How did you install AMEP?
None