trporn

Results 5 comments of trporn

If MatX can be instantiated with vector types then this is good enough, thanks! It was not clear from the type list in the docs. Of course that the users...

transposing float4 is the same as transposing a doubleComplex because only the element size matters, not the content, but I see your general point. thanks for the clarifications.

Thank you for the detailed reply. I will give it a try at a coming project

Yeap, enum is a nicer way to go. You can use something like magic_enum from https://github.com/Neargye/magic_enum to automatically infer the number of elements in the enum, turn enums to strings...

I manually "solved" the above issue by adding to each dataclass a field with the name of the class so: ``` @dataclass class A: foo: int A: bool @dataclass class...