How do I calculate the log of a number using bc?

前端 未结 8 711
说谎
说谎 2020-12-28 11:35

This is the first time I am using bc. I want to calculate the log (base 10) of a number. How do I this?

8条回答
  •  旧时难觅i
    2020-12-28 12:38

    Python can come in handy for this as,

    log3=$(python -c  'import math; print math.log(3)')
    

    Hope that helps!

提交回复
热议问题