Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

conjugation and Hermitian transpose should preserve matrix subdivisions #30468

Open
mwageringel opened this issue Aug 30, 2020 · 1 comment
Open

Comments

@mwageringel
Copy link

Transposing a matrix preserves its block structure:

sage: A = matrix(RDF, 2, 3); A.subdivide([1], [1]); A
⎛0.0│0.0 0.0⎞
⎜───┼───────⎟
⎝0.0│0.0 0.0⎠
sage: A.T
⎛0.0│0.0⎞
⎜───┼───⎟
⎜0.0│0.0⎟
⎝0.0│0.0⎠

The same should be the case for the conjugation and Hermitian transpose:

sage: A.H
⎛0.0 0.0⎞
⎜0.0 0.0⎟
⎝0.0 0.0⎠
sage: A.C
⎛0.0 0.0 0.0⎞
⎝0.0 0.0 0.0⎠

Component: linear algebra

Keywords: block_matrix

Issue created by migration from https://trac.sagemath.org/ticket/30468

@mkoeppe
Copy link
Member

mkoeppe commented Feb 13, 2021

comment:1

Setting new milestone based on a cursory review of ticket status, priority, and last modification date.

@mkoeppe mkoeppe modified the milestones: sage-9.3, sage-9.4 Feb 13, 2021
@mkoeppe mkoeppe modified the milestones: sage-9.4, sage-9.5 Jul 19, 2021
@mkoeppe mkoeppe modified the milestones: sage-9.5, sage-9.6 Dec 18, 2021
@mkoeppe mkoeppe modified the milestones: sage-9.6, sage-9.7 May 3, 2022
@mkoeppe mkoeppe modified the milestones: sage-9.7, sage-9.8 Sep 19, 2022
@mkoeppe mkoeppe removed this from the sage-9.8 milestone Jan 29, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants