mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-20 06:09:17 +02:00
72 lines
732 B
Markdown
72 lines
732 B
Markdown
---
|
|
layout: main
|
|
title: API
|
|
---
|
|
|
|
# Inexact Library
|
|
|
|
The `(scheme inexact)` library exports procedures which are typically only useful with inexact values.
|
|
|
|
For more information see the [R<sup>7</sup>RS Scheme Specification](../../r7rs.pdf).
|
|
|
|
- [`acos`](#acos)
|
|
- [`asin`](#asin)
|
|
- [`atan`](#atan)
|
|
- [`cos`](#cos)
|
|
- [`exp`](#exp)
|
|
- [`finite?`](#finite)
|
|
- [`infinite?`](#infinite)
|
|
- [`log`](#log)
|
|
- [`nan?`](#nan)
|
|
- [`sin`](#sin)
|
|
- [`sqrt`](#sqrt)
|
|
- [`tan`](#tan)
|
|
|
|
# acos
|
|
|
|
(acos z)
|
|
|
|
# asin
|
|
|
|
(asin z)
|
|
|
|
# atan
|
|
|
|
(atan z)
|
|
|
|
# cos
|
|
|
|
(cos z)
|
|
|
|
# exp
|
|
|
|
(exp z)
|
|
|
|
# finite?
|
|
|
|
(finite? z)
|
|
|
|
# infinite?
|
|
|
|
(infinite? z)
|
|
|
|
# log
|
|
|
|
(log z)
|
|
|
|
# nan?
|
|
|
|
(nan? z)
|
|
|
|
# sin
|
|
|
|
(sin z)
|
|
|
|
# sqrt
|
|
|
|
(sqrt z)
|
|
|
|
# tan
|
|
|
|
(tan z)
|
|
|