You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
however, under python/version= 3.13.1 and numpy/2.1.3 the above sequence results in:
File ".../jiveplot/plotiterator.py", line 1761, in makePlots
rv[ self.MKLAB(fields, dl) ] = dataset_fixed(dataset.x, functional.List(chd))
~~~~~~~~~~~~~~~^^^^^
TypeError: iteration over a 0-d array
and when we do vector averaging in time (i.s.o. scalar):
> avt vector
> pl
we get this:
'phatime' : data_quantity_time([(YTypes.phase, lambda x: numpy.ma.angle(x, True))]),
~~~~~~~~~~~~~~^^^^^^^^^
File ".../lib/python3.13/site-packages/numpy/lib/_function_base_impl.py", line 1721, in angle
a = arctan2(zimag, zreal)
AttributeError: 'int' object has no attribute 'arctan2'
The text was updated successfully, but these errors were encountered:
Under Py2 / Numpy 1.x this worked fine:
however, under
python/version= 3.13.1
andnumpy/2.1.3
the above sequence results in:and when we do vector averaging in time (i.s.o.
scalar
):we get this:
The text was updated successfully, but these errors were encountered: