You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
OK.
Thank you.
Could you move it to issues?
Chris Smith
unread,
May 26, 2015, 10:29:09 AM5/26/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
When chop=True it uses the current precision to replace small arguments with an exact zero. If you want to specify the threshold for chopping, pass in a value instead of a boolean. The exp(-60) is about 8x10^-27 so if you specify chop smaller than that you will not get 0 for the result:
>>> expr.n(chop=1e-27)
0.482830727370613
>>> expr.n(chop=1e-26)
0
Paul Royik
unread,
Jun 2, 2015, 12:50:58 PM6/2/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message