Map_threaded and restriction on the precision
When Applying map_threaded, is there a way to restrict the number of decimals displayed?
add a comment
When Applying map_threaded, is there a way to restrict the number of decimals displayed?
Use something like .n(digits=4)
.
Here is an example.
sage: f = lambda x: log(x).n(digits=4)
sage: map_threaded(f, [[1, 2], [3, e]])
[[0.0000, 0.6931], [1.099, 1.000]]
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2022-08-25 10:13:49 +0100
Seen: 108 times
Last updated: Aug 25 '22