From c127eed08b9e5dcd82602e044e7ed2bae1e6fedd Mon Sep 17 00:00:00 2001 From: conrad Date: Wed, 30 Mar 2022 13:59:17 +1000 Subject: [PATCH] more details --- docs.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs.html b/docs.html index 4ef8f32b..2a74814b 100644 --- a/docs.html +++ b/docs.html @@ -8832,10 +8832,10 @@ Examples:
 mat A(5, 5, fill::randu);
 
-double val1 = det(A);
+double val1 = det(A);         // form 1
 
 double val2;
-bool success = det(val2, A);
+bool success = det(val2, A);  // form 2
 
@@ -10534,10 +10534,10 @@ Examples:
 mat A(4, 5, fill::randu);
 
-uword r1 = rank(A);
+uword r1 = rank(A);           // form 1
 
 uword r2;
-bool success = rank(r2,  A);
+bool success = rank(r2,  A);  // form 2