The main technical challenge is figuring out what is the element type of the array. This isn't documented, but see:
At the interface level, there are two main challenges:
- Mathematica is row-oriented instead of column-oriented
- Each dimension in Mathematica can have a "name" (typically
List, but can be different).
So it would probably make sense to define a new type (WArrayExpr) to store these?
The main technical challenge is figuring out what is the element type of the array. This isn't documented, but see:
At the interface level, there are two main challenges:
List, but can be different).So it would probably make sense to define a new type (
WArrayExpr) to store these?