aboutsummaryrefslogtreecommitdiff
path: root/src/gensvm_lapack.c
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-09 20:55:24 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-09 20:55:24 +0200
commit7c8a5e4b2a7cff7573b1a308daf19d2dbd558a9c (patch)
tree2c4774a63ec91d60931d822a7607a5011711c946 /src/gensvm_lapack.c
parentadd doc and test to phony (diff)
downloadgensvm-7c8a5e4b2a7cff7573b1a308daf19d2dbd558a9c.tar.gz
gensvm-7c8a5e4b2a7cff7573b1a308daf19d2dbd558a9c.zip
strip whitespaces
Diffstat (limited to 'src/gensvm_lapack.c')
-rw-r--r--src/gensvm_lapack.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gensvm_lapack.c b/src/gensvm_lapack.c
index 6f50340..56dfc20 100644
--- a/src/gensvm_lapack.c
+++ b/src/gensvm_lapack.c
@@ -15,13 +15,13 @@
* @brief Solve AX = B where A is symmetric positive definite.
*
* @details
- * Solve a linear system of equations AX = B where A is symmetric positive
+ * Solve a linear system of equations AX = B where A is symmetric positive
* definite. This function uses the externel LAPACK routine dposv.
*
* @param[in] UPLO which triangle of A is stored
* @param[in] N order of A
* @param[in] NRHS number of columns of B
- * @param[in,out] A double precision array of size (LDA, N). On
+ * @param[in,out] A double precision array of size (LDA, N). On
* exit contains the upper or lower factor of the
* Cholesky factorization of A.
* @param[in] LDA leading dimension of A
@@ -36,7 +36,7 @@
* - >0: if i, the leading minor of A
* was not positive definite
*
- * See the LAPACK documentation at:
+ * See the LAPACK documentation at:
* http://www.netlib.org/lapack/explore-html/dc/de9/group__double_p_osolve.html
*/
int dposv(char UPLO, int N, int NRHS, double *A, int LDA, double *B,
@@ -53,13 +53,13 @@ int dposv(char UPLO, int N, int NRHS, double *A, int LDA, double *B,
* @brief Solve a system of equations AX = B where A is symmetric.
*
* @details
- * Solve a linear system of equations AX = B where A is symmetric. This
+ * Solve a linear system of equations AX = B where A is symmetric. This
* function uses the external LAPACK routine dsysv.
*
* @param[in] UPLO which triangle of A is stored
* @param[in] N order of A
* @param[in] NRHS number of columns of B
- * @param[in,out] A double precision array of size (LDA, N). On
+ * @param[in,out] A double precision array of size (LDA, N). On
* exit contains the block diagonal matrix D and
* the multipliers used to obtain the factor U or
* L from the factorization A = U*D*U**T or
@@ -96,7 +96,7 @@ int dsysv(char UPLO, int N, int NRHS, double *A, int LDA, int *IPIV,
}
/**
- * @brief Compute the eigenvalues and optionally the eigenvectors of a
+ * @brief Compute the eigenvalues and optionally the eigenvectors of a
* symmetric matrix.
*
* @details