Effacer les filtres
Effacer les filtres

How to create matlab workspace in python

12 vues (au cours des 30 derniers jours)
yu  tang cheng
yu tang cheng le 17 Mar 2021
like this
I want to use python to create d=2 and in the workspace
Thanks!

Réponses (2)

Hans-Joachim Steinort
Hans-Joachim Steinort le 1 Sep 2021
In your python file it looks for example like:
import matlab.engine
eng = matlab.engine.start_matlab()
eng.workspace['yourVar1'] = 1
eng.workspace['yourVar2'] = 'YourSecondValue'
You can also start this process directly from your python interpreter.
>>> import matlab.engine
>>> eng = matlab.engine.start_matlab('-desktop')
>>> eng.workspace['yourVar1'] = 1
If you start the matlab session with the -desktop option Matlab's GUI is opened and you can directly see the changes.

Vineet Joshi
Vineet Joshi le 23 Mar 2021
As per my understanding of your question, you wan to use MATLAB with Python.
All information regarding this can be found here:
You can also consult the following webinar for a detailed overview.

Catégories

En savoir plus sur Call MATLAB from Python dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by