1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
;; -*-theme-d-*-
;; Copyright (C) 2018, 2021 Tommi Höynälänmaa
;; Distributed under GNU Lesser General Public License version 3,
;; see file doc/LGPL-3.
(define-interface (standard-library posix-math)
(import (standard-library core)
(standard-library math))
;; Bessel functions.
(declare-simple-method r-j0 (<real>) <real> pure)
(declare-simple-method r-j1 (<real>) <real> pure)
(declare-simple-method r-jn (<integer> <real>) <real> pure)
(declare-simple-method r-y0 (<real>) <real> pure)
(declare-simple-method r-y1 (<real>) <real> pure)
(declare-simple-method r-yn (<integer> <real>) <real> pure)
(declare-simple-virtual-method j0 (<real-number>) <real> pure)
(declare-simple-virtual-method j0 (<real>) <real> pure)
(declare-simple-virtual-method j0 (<rational>) <real> pure)
(declare-simple-virtual-method j0 (<integer>) <real> pure)
(declare-simple-virtual-method j1 (<real-number>) <real> pure)
(declare-simple-virtual-method j1 (<real>) <real> pure)
(declare-simple-virtual-method j1 (<rational>) <real> pure)
(declare-simple-virtual-method j1 (<integer>) <real> pure)
(declare-simple-virtual-method jn (<integer> <real-number>) <real> pure)
(declare-simple-virtual-method jn (<integer> <real>) <real> pure)
(declare-simple-virtual-method jn (<integer> <rational>) <real> pure)
(declare-simple-virtual-method jn (<integer> <integer>) <real> pure)
(declare-simple-virtual-method y0 (<real-number>) <real> pure)
(declare-simple-virtual-method y0 (<real>) <real> pure)
(declare-simple-virtual-method y0 (<rational>) <real> pure)
(declare-simple-virtual-method y0 (<integer>) <real> pure)
(declare-simple-virtual-method y1 (<real-number>) <real> pure)
(declare-simple-virtual-method y1 (<real>) <real> pure)
(declare-simple-virtual-method y1 (<rational>) <real> pure)
(declare-simple-virtual-method y1 (<integer>) <real> pure)
(declare-simple-virtual-method yn (<integer> <real-number>) <real> pure)
(declare-simple-virtual-method yn (<integer> <real>) <real> pure)
(declare-simple-virtual-method yn (<integer> <rational>) <real> pure)
(declare-simple-virtual-method yn (<integer> <integer>) <real> pure))
|