Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Selwyn Simsek
gsll
Commits
ff773911
Commit
ff773911
authored
Feb 05, 2010
by
Liam M. Healy
Browse files
Fix argument type for LU-determinant (reported by moesenle)
parent
6e49e7b4
Changes
1
Show whitespace changes
Inline
Side-by-side
linear-algebra/lu.lisp
View file @
ff773911
;; LU decomposition
;; LU decomposition
;; Liam Healy, Thu Apr 27 2006 - 12:42
;; Liam Healy, Thu Apr 27 2006 - 12:42
;; Time-stamp: <20
09-12-27 09:54:59
EST lu.lisp>
;; Time-stamp: <20
10-02-05 09:15:11
EST lu.lisp>
;;
;;
;; Copyright 2006, 2007, 2008, 2009 Liam M. Healy
;; Copyright 2006, 2007, 2008, 2009 Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;; Distributed under the terms of the GNU General Public License
...
@@ -112,9 +112,9 @@
...
@@ -112,9 +112,9 @@
the same result more efficiently and reliably (consult any
the same result more efficiently and reliably (consult any
introductory textbook on numerical linear algebra for details)."
)
introductory textbook on numerical linear algebra for details)."
)
(
defmfun
LU-determinant
((
LU
matrix
)
signum
)
(
defmfun
LU-determinant
((
LU
matrix
)
signum
)
(
"gsl_linalg"
:complex
"_LU_det"
)
(
"gsl_linalg"
:complex
"_LU_det"
)
(((
mpointer
LU
)
:pointer
)
(
signum
(
:pointer
:int
))
)
(((
mpointer
LU
)
:pointer
)
(
signum
:int
))
:definition
:generic
:definition
:generic
:inputs
(
LU
)
:inputs
(
LU
)
:element-types
:doubles
:element-types
:doubles
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment