matrix.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. /*************************************************************************
  2. * *
  3. * Open Dynamics Engine, Copyright (C) 2001,2002 Russell L. Smith. *
  4. * All rights reserved. Email: [email protected] Web: www.q12.org *
  5. * *
  6. * This library is free software; you can redistribute it and/or *
  7. * modify it under the terms of EITHER: *
  8. * (1) The GNU Lesser General Public License as published by the Free *
  9. * Software Foundation; either version 2.1 of the License, or (at *
  10. * your option) any later version. The text of the GNU Lesser *
  11. * General Public License is included with this library in the *
  12. * file LICENSE.TXT. *
  13. * (2) The BSD-style license that is included with this library in *
  14. * the file LICENSE-BSD.TXT. *
  15. * *
  16. * This library is distributed in the hope that it will be useful, *
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files *
  19. * LICENSE.TXT and LICENSE-BSD.TXT for more details. *
  20. * *
  21. *************************************************************************/
  22. /* optimized and unoptimized vector and matrix functions */
  23. #ifndef _ODE_MATRIX_H_
  24. #define _ODE_MATRIX_H_
  25. #include <ode/common.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. /* set a vector/matrix of size n to all zeros, or to a specific value. */
  30. ODE_API void dSetZero (dReal *a, int n);
  31. ODE_API void dSetValue (dReal *a, int n, dReal value);
  32. /* get the dot product of two n*1 vectors. if n <= 0 then
  33. * zero will be returned (in which case a and b need not be valid).
  34. */
  35. ODE_API dReal dDot (const dReal *a, const dReal *b, int n);
  36. /* get the dot products of (a0,b), (a1,b), etc and return them in outsum.
  37. * all vectors are n*1. if n <= 0 then zeroes will be returned (in which case
  38. * the input vectors need not be valid). this function is somewhat faster
  39. * than calling dDot() for all of the combinations separately.
  40. */
  41. /* NOT INCLUDED in the library for now.
  42. void dMultidot2 (const dReal *a0, const dReal *a1,
  43. const dReal *b, dReal *outsum, int n);
  44. */
  45. /* matrix multiplication. all matrices are stored in standard row format.
  46. * the digit refers to the argument that is transposed:
  47. * 0: A = B * C (sizes: A:p*r B:p*q C:q*r)
  48. * 1: A = B' * C (sizes: A:p*r B:q*p C:q*r)
  49. * 2: A = B * C' (sizes: A:p*r B:p*q C:r*q)
  50. * case 1,2 are equivalent to saying that the operation is A=B*C but
  51. * B or C are stored in standard column format.
  52. */
  53. ODE_API void dMultiply0 (dReal *A, const dReal *B, const dReal *C, int p,int q,int r);
  54. ODE_API void dMultiply1 (dReal *A, const dReal *B, const dReal *C, int p,int q,int r);
  55. ODE_API void dMultiply2 (dReal *A, const dReal *B, const dReal *C, int p,int q,int r);
  56. /* do an in-place cholesky decomposition on the lower triangle of the n*n
  57. * symmetric matrix A (which is stored by rows). the resulting lower triangle
  58. * will be such that L*L'=A. return 1 on success and 0 on failure (on failure
  59. * the matrix is not positive definite).
  60. */
  61. ODE_API int dFactorCholesky (dReal *A, int n);
  62. /* solve for x: L*L'*x = b, and put the result back into x.
  63. * L is size n*n, b is size n*1. only the lower triangle of L is considered.
  64. */
  65. ODE_API void dSolveCholesky (const dReal *L, dReal *b, int n);
  66. /* compute the inverse of the n*n positive definite matrix A and put it in
  67. * Ainv. this is not especially fast. this returns 1 on success (A was
  68. * positive definite) or 0 on failure (not PD).
  69. */
  70. ODE_API int dInvertPDMatrix (const dReal *A, dReal *Ainv, int n);
  71. /* check whether an n*n matrix A is positive definite, return 1/0 (yes/no).
  72. * positive definite means that x'*A*x > 0 for any x. this performs a
  73. * cholesky decomposition of A. if the decomposition fails then the matrix
  74. * is not positive definite. A is stored by rows. A is not altered.
  75. */
  76. ODE_API int dIsPositiveDefinite (const dReal *A, int n);
  77. /* factorize a matrix A into L*D*L', where L is lower triangular with ones on
  78. * the diagonal, and D is diagonal.
  79. * A is an n*n matrix stored by rows, with a leading dimension of n rounded
  80. * up to 4. L is written into the strict lower triangle of A (the ones are not
  81. * written) and the reciprocal of the diagonal elements of D are written into
  82. * d.
  83. */
  84. ODE_API void dFactorLDLT (dReal *A, dReal *d, int n, int nskip);
  85. /* solve L*x=b, where L is n*n lower triangular with ones on the diagonal,
  86. * and x,b are n*1. b is overwritten with x.
  87. * the leading dimension of L is `nskip'.
  88. */
  89. ODE_API void dSolveL1 (const dReal *L, dReal *b, int n, int nskip);
  90. /* solve L'*x=b, where L is n*n lower triangular with ones on the diagonal,
  91. * and x,b are n*1. b is overwritten with x.
  92. * the leading dimension of L is `nskip'.
  93. */
  94. ODE_API void dSolveL1T (const dReal *L, dReal *b, int n, int nskip);
  95. /* in matlab syntax: a(1:n) = a(1:n) .* d(1:n) */
  96. ODE_API void dVectorScale (dReal *a, const dReal *d, int n);
  97. /* given `L', a n*n lower triangular matrix with ones on the diagonal,
  98. * and `d', a n*1 vector of the reciprocal diagonal elements of an n*n matrix
  99. * D, solve L*D*L'*x=b where x,b are n*1. x overwrites b.
  100. * the leading dimension of L is `nskip'.
  101. */
  102. ODE_API void dSolveLDLT (const dReal *L, const dReal *d, dReal *b, int n, int nskip);
  103. /* given an L*D*L' factorization of an n*n matrix A, return the updated
  104. * factorization L2*D2*L2' of A plus the following "top left" matrix:
  105. *
  106. * [ b a' ] <-- b is a[0]
  107. * [ a 0 ] <-- a is a[1..n-1]
  108. *
  109. * - L has size n*n, its leading dimension is nskip. L is lower triangular
  110. * with ones on the diagonal. only the lower triangle of L is referenced.
  111. * - d has size n. d contains the reciprocal diagonal elements of D.
  112. * - a has size n.
  113. * the result is written into L, except that the left column of L and d[0]
  114. * are not actually modified. see ldltaddTL.m for further comments.
  115. */
  116. ODE_API void dLDLTAddTL (dReal *L, dReal *d, const dReal *a, int n, int nskip);
  117. /* given an L*D*L' factorization of a permuted matrix A, produce a new
  118. * factorization for row and column `r' removed.
  119. * - A has size n1*n1, its leading dimension in nskip. A is symmetric and
  120. * positive definite. only the lower triangle of A is referenced.
  121. * A itself may actually be an array of row pointers.
  122. * - L has size n2*n2, its leading dimension in nskip. L is lower triangular
  123. * with ones on the diagonal. only the lower triangle of L is referenced.
  124. * - d has size n2. d contains the reciprocal diagonal elements of D.
  125. * - p is a permutation vector. it contains n2 indexes into A. each index
  126. * must be in the range 0..n1-1.
  127. * - r is the row/column of L to remove.
  128. * the new L will be written within the old L, i.e. will have the same leading
  129. * dimension. the last row and column of L, and the last element of d, are
  130. * undefined on exit.
  131. *
  132. * a fast O(n^2) algorithm is used. see ldltremove.m for further comments.
  133. */
  134. ODE_API void dLDLTRemove (dReal **A, const int *p, dReal *L, dReal *d,
  135. int n1, int n2, int r, int nskip);
  136. /* given an n*n matrix A (with leading dimension nskip), remove the r'th row
  137. * and column by moving elements. the new matrix will have the same leading
  138. * dimension. the last row and column of A are untouched on exit.
  139. */
  140. ODE_API void dRemoveRowCol (dReal *A, int n, int nskip, int r);
  141. #if defined(__ODE__)
  142. void _dSetZero (dReal *a, size_t n);
  143. void _dSetValue (dReal *a, size_t n, dReal value);
  144. dReal _dDot (const dReal *a, const dReal *b, int n);
  145. void _dMultiply0 (dReal *A, const dReal *B, const dReal *C, int p,int q,int r);
  146. void _dMultiply1 (dReal *A, const dReal *B, const dReal *C, int p,int q,int r);
  147. void _dMultiply2 (dReal *A, const dReal *B, const dReal *C, int p,int q,int r);
  148. int _dFactorCholesky (dReal *A, int n, void *tmpbuf);
  149. void _dSolveCholesky (const dReal *L, dReal *b, int n, void *tmpbuf);
  150. int _dInvertPDMatrix (const dReal *A, dReal *Ainv, int n, void *tmpbuf);
  151. int _dIsPositiveDefinite (const dReal *A, int n, void *tmpbuf);
  152. void _dFactorLDLT (dReal *A, dReal *d, int n, int nskip);
  153. void _dSolveL1 (const dReal *L, dReal *b, int n, int nskip);
  154. void _dSolveL1T (const dReal *L, dReal *b, int n, int nskip);
  155. void _dVectorScale (dReal *a, const dReal *d, int n);
  156. void _dSolveLDLT (const dReal *L, const dReal *d, dReal *b, int n, int nskip);
  157. void _dLDLTAddTL (dReal *L, dReal *d, const dReal *a, int n, int nskip, void *tmpbuf);
  158. void _dLDLTRemove (dReal **A, const int *p, dReal *L, dReal *d, int n1, int n2, int r, int nskip, void *tmpbuf);
  159. void _dRemoveRowCol (dReal *A, int n, int nskip, int r);
  160. PURE_INLINE size_t _dEstimateFactorCholeskyTmpbufSize(int n)
  161. {
  162. return dPAD(n) * sizeof(dReal);
  163. }
  164. PURE_INLINE size_t _dEstimateSolveCholeskyTmpbufSize(int n)
  165. {
  166. return dPAD(n) * sizeof(dReal);
  167. }
  168. PURE_INLINE size_t _dEstimateInvertPDMatrixTmpbufSize(int n)
  169. {
  170. size_t FactorCholesky_size = _dEstimateFactorCholeskyTmpbufSize(n);
  171. size_t SolveCholesky_size = _dEstimateSolveCholeskyTmpbufSize(n);
  172. size_t MaxCholesky_size = FactorCholesky_size > SolveCholesky_size ? FactorCholesky_size : SolveCholesky_size;
  173. return dPAD(n) * (n + 1) * sizeof(dReal) + MaxCholesky_size;
  174. }
  175. PURE_INLINE size_t _dEstimateIsPositiveDefiniteTmpbufSize(int n)
  176. {
  177. return dPAD(n) * n * sizeof(dReal) + _dEstimateFactorCholeskyTmpbufSize(n);
  178. }
  179. PURE_INLINE size_t _dEstimateLDLTAddTLTmpbufSize(int nskip)
  180. {
  181. return nskip * 2 * sizeof(dReal);
  182. }
  183. PURE_INLINE size_t _dEstimateLDLTRemoveTmpbufSize(int n2, int nskip)
  184. {
  185. return n2 * sizeof(dReal) + _dEstimateLDLTAddTLTmpbufSize(nskip);
  186. }
  187. // For internal use
  188. #define dSetZero(a, n) _dSetZero(a, n)
  189. #define dSetValue(a, n, value) _dSetValue(a, n, value)
  190. #define dDot(a, b, n) _dDot(a, b, n)
  191. #define dMultiply0(A, B, C, p, q, r) _dMultiply0(A, B, C, p, q, r)
  192. #define dMultiply1(A, B, C, p, q, r) _dMultiply1(A, B, C, p, q, r)
  193. #define dMultiply2(A, B, C, p, q, r) _dMultiply2(A, B, C, p, q, r)
  194. #define dFactorCholesky(A, n, tmpbuf) _dFactorCholesky(A, n, tmpbuf)
  195. #define dSolveCholesky(L, b, n, tmpbuf) _dSolveCholesky(L, b, n, tmpbuf)
  196. #define dInvertPDMatrix(A, Ainv, n, tmpbuf) _dInvertPDMatrix(A, Ainv, n, tmpbuf)
  197. #define dIsPositiveDefinite(A, n, tmpbuf) _dIsPositiveDefinite(A, n, tmpbuf)
  198. #define dFactorLDLT(A, d, n, nskip) _dFactorLDLT(A, d, n, nskip)
  199. #define dSolveL1(L, b, n, nskip) _dSolveL1(L, b, n, nskip)
  200. #define dSolveL1T(L, b, n, nskip) _dSolveL1T(L, b, n, nskip)
  201. #define dVectorScale(a, d, n) _dVectorScale(a, d, n)
  202. #define dSolveLDLT(L, d, b, n, nskip) _dSolveLDLT(L, d, b, n, nskip)
  203. #define dLDLTAddTL(L, d, a, n, nskip, tmpbuf) _dLDLTAddTL(L, d, a, n, nskip, tmpbuf)
  204. #define dLDLTRemove(A, p, L, d, n1, n2, r, nskip, tmpbuf) _dLDLTRemove(A, p, L, d, n1, n2, r, nskip, tmpbuf)
  205. #define dRemoveRowCol(A, n, nskip, r) _dRemoveRowCol(A, n, nskip, r)
  206. #define dEstimateFactorCholeskyTmpbufSize(n) _dEstimateFactorCholeskyTmpbufSize(n)
  207. #define dEstimateSolveCholeskyTmpbufSize(n) _dEstimateSolveCholeskyTmpbufSize(n)
  208. #define dEstimateInvertPDMatrixTmpbufSize(n) _dEstimateInvertPDMatrixTmpbufSize(n)
  209. #define dEstimateIsPositiveDefiniteTmpbufSize(n) _dEstimateIsPositiveDefiniteTmpbufSize(n)
  210. #define dEstimateLDLTAddTLTmpbufSize(nskip) _dEstimateLDLTAddTLTmpbufSize(nskip)
  211. #define dEstimateLDLTRemoveTmpbufSize(n2, nskip) _dEstimateLDLTRemoveTmpbufSize(n2, nskip)
  212. #endif // defined(__ODE__)
  213. #ifdef __cplusplus
  214. }
  215. #endif
  216. #endif