Skip to content

DOC: SciPy numpy documentation out of date #13355

@daniel-goldstein

Description

@daniel-goldstein

Noticed an error in the matmul docs that was fixed by #12560 but is still not updated in the published documentation. Specifically,

>>> a = a = np.full([9,5,7,3], True, dtype=bool)
>>> c = np.full([9, 5, 4,3], True, dtype=bool)
>>> np.dot(a, c).shape
(9, 5, 7, 9, 5, 4)
>>> np.matmul(a, c).shape # n is 5, k is 3, m is 4
(9, 5, 7, 4)

The fix was committed on Dec 17, 2018, and the SciPy page was last updated Jan 31, 2019. Just curious if this is an issue and, if not, if the page will be updated soon with the corrected docs.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions