File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
29
29
### Fixed
30
30
31
31
* Updated ` pre-commit ` GitHub workflow to pass ` no-commit-to-branch ` check [ #2501 ] ( https://github.com/IntelPython/dpnp/pull/2501 )
32
+ * Updated the math formulas in summary of ` dpnp.matvec ` and ` dpnp.vecmat ` to correct a typo [ #2503 ] ( https://github.com/IntelPython/dpnp/pull/2503 )
32
33
33
34
### Security
34
35
Original file line number Diff line number Diff line change @@ -956,7 +956,7 @@ def matvec(
956
956
matrix-vector product is defined as:
957
957
958
958
.. math::
959
- \mathbf{A} \cdot \mathbf{b } = \sum_{i =0}^{n-1} A_{ij}v_j
959
+ \mathbf{A} \cdot \mathbf{v } = \sum_{j =0}^{n-1} A_{ij} v_j
960
960
961
961
where the sum is over the last dimensions in `x1` and `x2` (unless `axes`
962
962
is specified). (For a matrix-vector product with the vector conjugated,
@@ -1457,7 +1457,7 @@ def vecmat(
1457
1457
is defined as:
1458
1458
1459
1459
.. math::
1460
- \mathbf{b } \cdot \mathbf{A} = \sum_{i=0}^{n-1} \overline{v_i}A_{ij}
1460
+ \mathbf{v } \cdot \mathbf{A} = \sum_{i=0}^{n-1} \overline{v_i}A_{ij}
1461
1461
1462
1462
where the sum is over the last dimension of `x1` and the one-but-last
1463
1463
dimensions in `x2` (unless `axes` is specified) and where
You can’t perform that action at this time.
0 commit comments