aboutsummaryrefslogtreecommitdiff
path: root/redist
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2018-03-17 01:39:04 -0400
committercnlohr <lohr85@gmail.com>2018-03-17 01:39:04 -0400
commit9bd8c4c5ed38d186c04ea318722ca54b2f9c8ea1 (patch)
tree7a551ebe5fc84c05dcd4cac942122901efb11672 /redist
parentdbe5808f70e1e088e311697e102ff60a6b07a7c6 (diff)
downloadlibsurvive-9bd8c4c5ed38d186c04ea318722ca54b2f9c8ea1.tar.gz
libsurvive-9bd8c4c5ed38d186c04ea318722ca54b2f9c8ea1.tar.bz2
Fix other comments in .h file.
Diffstat (limited to 'redist')
-rw-r--r--redist/dclhelpers.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/redist/dclhelpers.h b/redist/dclhelpers.h
index 4ada24a..fd86c78 100644
--- a/redist/dclhelpers.h
+++ b/redist/dclhelpers.h
@@ -37,25 +37,25 @@ void dclUSub( DCL_FLOAT * X, const DCL_FLOAT * U, const DCL_FLOAT * B, int n, in
/* Inverts a matrix X (n by n) using the method of LU decomposition */
void dclInv( DCL_FLOAT * Ainv, const DCL_FLOAT * A, int n );
-/* Matrix Multiply C = A * B
+/* Matrix Multiply R = A * B
A (n by m)
B (m by p)
- C (n by p) */
+ R (n by p) */
void dclMul( DCL_FLOAT * R, const DCL_FLOAT * A, const DCL_FLOAT * B, int n, int m, int p );
-/* Matrix Multiply D = A * B + C
+/* Matrix Multiply R = A * B + C
A (n by m)
B (m by p)
C (n by p)
- D (n by p) */
+ R (n by p) */
void dclMulAdd( DCL_FLOAT * R, const DCL_FLOAT * A, const DCL_FLOAT * B, const DCL_FLOAT * C, int n, int m, int p );
-/* Matrix Multiply D = alpha * A * B + beta * C
+/* Matrix Multiply R = alpha * A * B + beta * C
A (n by m)
B (m by p)
C (n by p)
- D (n by p) */
-void dclGMulAdd( DCL_FLOAT * D, const DCL_FLOAT * A, const DCL_FLOAT * B, const DCL_FLOAT * C, DCL_FLOAT alpha, DCL_FLOAT beta, int n, int m, int p );
+ R (n by p) */
+void dclGMulAdd( DCL_FLOAT * R, const DCL_FLOAT * A, const DCL_FLOAT * B, const DCL_FLOAT * C, DCL_FLOAT alpha, DCL_FLOAT beta, int n, int m, int p );
#endif