A blog to record helpful tips/hints/tricks/etc. that I come across during my scientific career regarding science, computers, and research. I love learning and disseminating Knowledge.
Tuesday, January 31, 2012
Sage - displaying a float decimal point
In Sage, like many other mathematics software, uses either a float command or you can simply put a "." in your value to display decimals.
f = (arcsin(alpha))^2 + log(tan(alpha/2)) - arcsin(alpha)*arctan(alpha)
show(f)
show(float(f))
No comments:
Post a Comment