aboutsummaryrefslogtreecommitdiff
path: root/src/mathfunc.cpp
diff options
context:
space:
mode:
authorPjotr Prins2018-08-31 12:29:45 +0000
committerPjotr Prins2018-08-31 12:29:45 +0000
commit59f453afe05b0b637edeff3127fb7ef7be5944b4 (patch)
tree55ef5d624f3dfe87fee5ebe5a02169df812967b5 /src/mathfunc.cpp
parent86a002ae27171a3922d4bd9e7b46ff0df95c51ed (diff)
downloadpangemma-59f453afe05b0b637edeff3127fb7ef7be5944b4.tar.gz
Improving readability
Diffstat (limited to 'src/mathfunc.cpp')
-rw-r--r--src/mathfunc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mathfunc.cpp b/src/mathfunc.cpp
index 7117700..4708ffa 100644
--- a/src/mathfunc.cpp
+++ b/src/mathfunc.cpp
@@ -449,7 +449,7 @@ void StandardizeVector(gsl_vector *y) {
return;
}
-// Calculate UtX.
+// Calculate UtX (U gets transposed)
void CalcUtX(const gsl_matrix *U, gsl_matrix *UtX) {
gsl_matrix *X = gsl_matrix_safe_alloc(UtX->size1, UtX->size2);
gsl_matrix_safe_memcpy(X, UtX);