How can I run a jupyter notebook script from matlab?
55 次查看(过去 30 天)
显示 更早的评论
I already tried running matlab from jupyter using Oct2Py but it didn't work (error after error).
So, I'm wondering if I can use matlab to run a jupyter notebook script (this would be much simpler because most of my code is in matlab- only a small part of it (the machine learning part) is in jupyter notebook.
Thanks.
3 个评论
Sourabh Kondapaka
2020-11-16
Do you mean to run all cells of the jupyter notebook from matlab ?
回答(1 个)
Sourabh Kondapaka
2020-11-19
You can convert the kmeans.ipynb file to a python script by either of the followign ways:
- Open kmeans.ipynb -> Click on File -> Download as -> Python (.py) . The python script can be found in your downloads folder. Now copy the python script file to the same directory as your matlab script and then follow Lukas Hagmeyer's suggestion : [status,cmdout] = system('python kmeans.py');
- The other way to convert .ipynb to .py file is to use nbconvert python package. Fore more info you can check their documentation
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Integration with Online Platforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!