What is the recommended ways to transfer a matrix generated in Mathematica to Julia and benefits/disadvantages? My workflow is the following:
- generate matrices in Mathematica
- transfer the matrices to Julia (via some standardized data format like MatrixMarket,…)
- use those in further applications/packages
- going back and forth
Some other methods that I am considering is:
- call directly the function in 3 using Mathematica ExternalEvaluate
- or call 1 using Julia’s interoperability
I guess interoperability cannot be much more seamless than this. If you have any other methods please let me know.