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

Implement OOP block_structure approach and implement nonsquare complex blocks #36

Open
sdahdah opened this issue Dec 20, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@sdahdah
Copy link
Member

sdahdah commented Dec 20, 2024

The current approach to block_structure is that of https://www.mathworks.com/help/robust/ref/mussv.html

If BlockStructure(i,:) = [-r 0], then the i-th block is an r-by-r repeated, diagonal real scalar perturbation.
if BlockStructure(i,:) = [r 0], then the i-th block is an r-by-r repeated, diagonal complex scalar perturbation;
if BlockStructure(i,:) = [r c], then the i-th block is an r-by-c complex full-block perturbation.

but we should do something like

block_structure = [
    dkpy.RealDiagonalBlock(r),
    dkpy.ComplexDiagonalBlock(r),
    dkpy.ComplexFullBlock(r, c),
]

in addition to

block_structure = [
    [-r, 0],
    [r, 0],
    [r, c],
]

The objects should all inherit from something like dkpy.Block or dkpy.Perturbation. Names are open for discussion.

Also, nonsquare full blocks need to be implemented.

@sdahdah sdahdah added the enhancement New feature or request label Dec 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant