aboutsummaryrefslogtreecommitdiff
path: root/src/gensvm_simplex.c
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2016-10-14 19:00:33 +0200
committerGertjan van den Burg <burg@ese.eur.nl>2016-10-14 19:00:33 +0200
commit0cc025358af341b7e9757e2b9ce5eb0b09af7b2f (patch)
tree343f50cdba91361ddd0a18c554a7cd646d88aff8 /src/gensvm_simplex.c
parentadd sparse matrices to GenSVM and reorganize update functionality (diff)
downloadgensvm-0cc025358af341b7e9757e2b9ce5eb0b09af7b2f.tar.gz
gensvm-0cc025358af341b7e9757e2b9ce5eb0b09af7b2f.zip
documentation fixes
Diffstat (limited to 'src/gensvm_simplex.c')
-rw-r--r--src/gensvm_simplex.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/gensvm_simplex.c b/src/gensvm_simplex.c
index a704d85..1a853cc 100644
--- a/src/gensvm_simplex.c
+++ b/src/gensvm_simplex.c
@@ -16,14 +16,12 @@
* @brief Generate matrix of simplex vertex coordinates
*
* @details
- * Generate the simplex matrix. Each row of the created
- * matrix contains the coordinate vector of a single
- * vertex of the K-simplex in K-1 dimensions. The simplex
- * generated is a special simplex with edges of length 1.
- * The simplex matrix U must already have been allocated.
+ * Generate the simplex matrix. Each row of the created matrix contains the
+ * coordinate vector of a single vertex of the K-simplex in K-1 dimensions.
+ * The simplex generated is a special simplex with edges of length 1. The
+ * simplex matrix U of the GenModel must already have been allocated.
*
- * @param[in] K number of classes
- * @param[in,out] U simplex matrix of size K * (K-1)
+ * @param[in,out] model a GenModel structure
*/
void gensvm_simplex(struct GenModel *model)
{