Passing variables from MATLAB to Python

22 vues (au cours des 30 derniers jours)
Matt Smith
Matt Smith le 29 Juin 2022
Commenté : Matt Smith le 30 Juin 2022
As part of a MATLAB programme I am writing, I utilise a python script. I would like to allow the user to configure parameters in MATLAB for use in that python script.
I have been completely unable to figure out how to send MATLAB variables to python, or rather, how to pull MATLAB variables in a python script. I have a variable x in MATLAB that I wish to use in python.
import matlab.engine
eng = matlab.engine.start_matlab()
The above code works but any step I have tried beyond that has not worked.
Any help would be much appreciated!

Réponse acceptée

Kojiro Saito
Kojiro Saito le 30 Juin 2022
You might use shared MATLAB session (document link).
Run this code in MATLAB.
matlab.engine.shareEngine
Then get a variable from workspace in Python code.
import matlab.engine
eng = matlab.engine.connect_matlab()
x = eng.workspace['x']
  1 commentaire
Matt Smith
Matt Smith le 30 Juin 2022
Amazing! Thank you.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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

Produits


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by