diff --git a/docs.html b/docs.html
index 56443f84..644d4a53 100644
--- a/docs.html
+++ b/docs.html
@@ -4372,6 +4372,7 @@ See also:
- math & relational operators
- subcube views
+- pow()
- .for_each()
- .each_col() & .each_row()
- lambda function at cprogramming.com
@@ -10553,8 +10554,9 @@ See also:
| pow( A, scalar ) | | (form 1) |
| pow( A, B ) | | (form 2) |
-| pow( A.each_col(), C ) | | (form 3) |
-| pow( A.each_row(), R ) | | (form 4) |
+| pow( M.each_col(), C ) | | (form 3) |
+| pow( M.each_row(), R ) | | (form 4) |
+| pow( Q.each_slice(), M ) | | (form 5) |
@@ -10565,11 +10567,14 @@ See also:
- form 2: raise each element in A to the power denoted by the corresponding element in B;
the sizes of A and B must be the same
-- form 3: for each column vector of A, raise each element to the power denoted by the corresponding element in column vector C;
-
the number of rows in A and C must be the same
+- form 3: for each column vector of matrix M, raise each element to the power denoted by the corresponding element in column vector C;
+
the number of rows in M and C must be the same
-- form 4: for each row vector of A, raise each element to the power denoted by the corresponding element in row vector R;
-
the number of columns in A and R must be the same
+- form 4: for each row vector of matrix M, raise each element to the power denoted by the corresponding element in row vector R;
+
the number of columns in M and R must be the same
+
+- form 5: for each slice of cube Q, raise each element to the power denoted by the corresponding element in matrix M;
+
the number of rows and columns in Q and M must be the same
- Caveats: