We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think in the documentation of arlpy.comms.psk() needs to update as last line of example code :
arlpy.comms.psk()
>>> 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:
The text was updated successfully, but these errors were encountered:
Yes, you are right, it's an error in the docs. I will update the docs. Thanks.
Sorry, something went wrong.
mchitre
No branches or pull requests
I think in the documentation of
arlpy.comms.psk()
needs to update as last line of example code :I guess last line should be following:
Attached Screenshot:
The text was updated successfully, but these errors were encountered: