arlpy
arlpy copied to clipboard
Documentation shows incorrect packages for iqplot
I think in the documentation of arlpy.comms.psk() needs to update as last line of example code :
>>> import arlpy
>>> arlpy.comms.psk()
array([1+0j, -1+0j])
>>> arlpy.comms.psk(4)
array([0.707+0.707j, -0.707+0.707j, 0.707-0.707j, -0.707-0.707j])
>>> arlpy.comms.iqplot(arlpy.comms.psk(4))
I guess last line should be following:
>>> import arlpy
>>> arlpy.comms.psk()
array([1+0j, -1+0j])
>>> arlpy.comms.psk(4)
array([0.707+0.707j, -0.707+0.707j, 0.707-0.707j, -0.707-0.707j])
>>> arlpy.plot.iqplot(arlpy.comms.psk(4))
Attached Screenshot:

Yes, you are right, it's an error in the docs. I will update the docs. Thanks.