Skip to content
Snippets Groups Projects
Commit 24574c15 authored by Liam M. Healy's avatar Liam M. Healy
Browse files

Add documentation strings for the GSL 1.12 additions to Chebyshev

parent 81154bd5
No related branches found
No related tags found
No related merge requests found
;; Chebyshev Approximations
;; Liam Healy Sat Nov 17 2007 - 20:36
;; Time-stamp: <2010-04-25 21:28:20EDT chebyshev.lisp>
;; Time-stamp: <2010-04-26 09:48:32EDT chebyshev.lisp>
;;
;; Copyright 2007, 2008, 2009 Liam M. Healy
;; Distributed under the terms of the GNU General Public License
......@@ -42,6 +42,7 @@
"gsl_cheb_order"
(((mpointer object) :pointer))
:definition :method
:documentation "The order of Chebyshev series."
:c-return sizet
:gsl-version (1 12))
......@@ -49,6 +50,7 @@
"gsl_cheb_size"
(((mpointer chebyshev) :pointer))
:definition :method
:documentation "The length of the Chebyshev coefficient array."
:c-return sizet
:gsl-version (1 12))
......@@ -56,6 +58,8 @@
"gsl_cheb_coeffs"
(((mpointer chebyshev) :pointer))
:c-return (crtn :pointer)
:documentation
"The Chebyshev coefficient array as a CL array (foreign-friendly)."
:return ((c-array:copy-foreign-vector crtn (size chebyshev)))
:gsl-version (1 12))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment