Next: iklib numerics compar, Up: iklib numerics [Index]
The following bindings are exported by the library (vicare
numerics constants). Notice that under GNU Emacs it is easy to
display the symbol greek-pi with the Unicode glyph for the greek
letter adding the following to the Scheme hook:
(defun my-pretty-chars-scheme-pi ()
(interactive)
(font-lock-add-keywords
nil '(("\\(\\<[-+]?\\(greek-pi\\)\\)"
(0 (progn
(compose-region (match-beginning 2)
(match-end 2)
?\u03C0)
nil))))))
Evaluate to a constant flonum object representing plus or minus pi.
Evaluate to a constant flonum object representing plus or minus pi divided by 2.
Evaluate to a constant flonum object representing plus or minus pi divided by 3.
Evaluate to a constant flonum object representing plus or minus pi divided by 4.
Evaluate to a constant flonum object representing plus or minus pi divided by 6.
Evaluate to a constant flonum object representing plus or minus pi multiplied by 2.
Evaluate to a constant flonum object representing plus or minus pi multiplied by 2/3.
Evaluate to a constant flonum object representing plus or minus pi multiplied by 3/4.