Compound matrices are matrices whose entries are all the minors of a given size of another matrix.
https://en.wikipedia.org/wiki/Compound_matrix
They are probably not too hard to write by the user, but maybe I am lucky and they are already implemented in mathematica ? Thanks :)
Minorsdoes this for square matrices. It was recently noticed that we did not extend to rectangular, so we added support for that to a future release. – Daniel Lichtblau Jan 08 '22 at 16:44Minorsseems to give sensible results for rectangular matrices as well? – Hausdorff Jan 14 '22 at 14:15During evaluation of In[209]:= Minors::matsq: Argument {{a[1,1],a[1,2],a[1,3]},{a[2,1],a[2,2],a[2,3]}} at position 1 is not a non-empty square matrix.
Out[209]= Minors[{{a[1, 1], a[1, 2], a[1, 3]}, {a[2, 1], a[2, 2], a[2, 3]}}]`
– Daniel Lichtblau Jan 17 '22 at 21:04Minors[Array[a, {2, 3}], 2]– Hausdorff Jan 17 '22 at 23:17