Questions tagged [interoperability]

For questions on interfacing or getting Mathematica to work together with other software or technologies.

For questions on interfacing or getting Mathematica to work together with other software or technologies. If your question is about a specific language you want to interface with Mathematica, please consider using the appropriate *link tag.

Built in interoperability interfaces:

WRI and third party interoperability packages and interfaces:

  • TetGen (tetrahedral mesh generator and 3D Delaunay triangulator): TetGenLink

  • MATLAB: mEngine. It allows calling MATLAB from Mathematica and transferring matrices/vectors.

  • Python:

    • Pythonika for calling Python from Mathematica

    • see the SystemFiles/Links/Python subdirectory of the Mathematica installation for calling Mathematica from Python

  • The SystemFiles/Links directory contains several packages for interfacing Mathematica with various technologies (some of these packages are unsupported).

241 questions
15
votes
2 answers

How do you run Wolfram Language code in VSCode?

I have recently gotten into learning the Wolfram Language with Mathematica, I honestly love Mathematica, but my trial has recently ended, and I do not want to go through the mess of installing Eclipse; does anybody know of any way to run Wolfram…
Greenrock12
  • 151
  • 1
  • 4
6
votes
1 answer

What devices are supported by the connected devices framework?

One of the new features in v10 is support for connected devices. How can I find out if a particular device is supported by Mathematica? Is there a complete list? Is support being added continually? The documentation says: Many classes of devices…
Szabolcs
  • 234,956
  • 30
  • 623
  • 1,263
2
votes
0 answers

Does Mathematica have a plug-in for communicating with an Android device?

I am trying to take input from an Android device, do some processing in Mathematica and pass the final output back to the device, so I need a plug in to communicate to an Android device.
2
votes
0 answers

How to trigger Emacs to open a file from Mathematica?

I thought Run will do the trick: Run["emacs -q " <> myfile] Run["! emacs -q " <> myfile] But it does not! I'm using M 10 and Ubuntu Linux + Zsh. In[11]:= RunProcess[$SystemShell,All,"emacs -q "<>"/tmp/XXX.txt"<>" \n \n exit \n \n "] Out[11]=…
user13253
  • 8,666
  • 2
  • 42
  • 65
2
votes
1 answer

Converting code in other languages to Mathematica code

Do you know of any work being done on the idea of bringing in code from other languages like Perl, PHP, Python, etc.? That is, import the code in some way and then convert it to Mathematica code?
EdgyTector
  • 147
  • 3
1
vote
0 answers

calling mathematica code in Python

I am wondering if there is any working example of calling mathematica 9 outputs in python? or plotting mathematica output in python?
Thomas
  • 363
  • 2
  • 7
1
vote
1 answer

Mathematica function into R

I am R user and very new to mathematica. I want to make run a .wl file into R script and using its results into the same R script. Is there any possible way to load and run .wl file into R? Your help will be much appreciated. Thank You
Shaami
  • 11
  • 1
0
votes
1 answer

How to make an executable?

I made a program in mathematica and I want to know if Mathematica permits to generate an executable code (*.exe) for running it on a machine where Mathematica is not installed. This is my program: datos2 = Import["d2.txt", "Data"]; f =…
user41178
  • 39
  • 3