I am trying to get Jupyter Notebook to work with Matlab. I found a very helpful blog post about this which got me as far as being able to create a MATLAB notebook. The blog post proposes the following steps:
- Download and install Anaconda.
- Install the Python packages
pymatbridge
andmatlab_kernel
. Define the path to the MATLAB executable by typing the following in a terminal:
echo "export MATLAB_EXECUTABLE=/Applications/MATLAB_2015b.app/bin/matlab" >> ~/.bash_profile.
Restart terminal. Then using MATLAB from a Jupyter Notebook should work.
My issue is with the third step, which is to point the kernel to the MATLAB executable. It is written for someone using a Mac, and I am on Windows 10. I'm not familiar enough with what is being done here to "translate" this step for Windows. Here are the instructions for a Mac:
I would deeply appreciate any suggestions on how to accomplish this step in Windows 10.