quotient、remainder、modulo和sqrt
函数quotient用于求商数(quotient)。
函数remainder和modulo用于求余数(remainder)。
函数sqrt用于求参数的平方根(square root)。
以下是一些示例:
(quotient73)
;Value:2
(modulo73)
;Value:1
(sqrt 10)
;Value:3.1622776601683795
sin、cos、tan、asin、acos和atan
atan接受1个或2个参数。如果期望atan的结果是1/2π,就使用第二个参数指明使用弧度制。
以下依旧是一些示例:
(atan1)
;Value:0.7853981633974483
(atan 1 0)
;Value:1.5707963267948966
(*4 (atan 1.0))
;Value:3.141592653589793
指数和对数
指数通过exp函数运算,对数通过log函数运算。a的b次幂可以通过(expt a b)来计算。
(exp2/3)
;Value:1.9477340410546757
(expt3 4)
;Value:81
(log1000)
;Value:6.907755278982137
数值变换
函数exact->inexact用于把分数转换为浮点数。
(exact->inexact(/2937))
;Value:1.380952380952381
感谢访问,希望对您有所帮助。 欢迎关注或收藏、评论或点赞。
为使本文得到斧正和提问,转载请注明出处:
http://blog.csdn.net/nomasp
时间: 2024-10-30 15:28:42