Skip to content

Commit eb93e6a

Browse files
committed
add matrix left divide text, fix formula matrix_exp_multiply
1 parent 3ba7bd1 commit eb93e6a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/functions-reference/matrix_operations.Rmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,12 +1270,14 @@ The right division of B by A; equivalently `B * inverse(A)`
12701270
\index{{\tt \bfseries operator\_left\_div }!{\tt (matrix A, vector b): vector}|hyperpage}
12711271

12721272
`vector` **`operator\`**`(matrix A, vector b)`<br>\newline
1273+
The left division of A by b; equivalently `inverse(A) * b`
12731274

12741275

12751276
<!-- matrix; operator\; (matrix A, matrix B); -->
12761277
\index{{\tt \bfseries operator\_left\_div }!{\tt (matrix A, matrix B): matrix}|hyperpage}
12771278

12781279
`matrix` **`operator\`**`(matrix A, matrix B)`<br>\newline
1280+
The left division of A by B; equivalently `inverse(A) * B`
12791281

12801282

12811283
#### Lower-triangular matrix division functions
@@ -1379,7 +1381,7 @@ The matrix exponential of A
13791381

13801382
`matrix` **`matrix_exp_multiply`**`(matrix A, matrix B)`<br>\newline
13811383
The multiplication of matrix exponential of A and matrix B;
1382-
algebraically equivalent to the less efficient form `matrix_exp(t * A) * B`.
1384+
algebraically equivalent to the less efficient form `matrix_exp(A) * B`.
13831385

13841386
<!-- matrix; scale_matrix_exp_multiply; (real t, matrix A, matrix B); -->
13851387
\index{{\tt \bfseries scale\_matrix\_exp\_multiply }!{\tt (real t, matrix A, matrix B): matrix}|hyperpage}

0 commit comments

Comments
 (0)