Python script changes are not updated in MATLAB

17 ビュー (過去 30 日間)
Ali Tarik Karagöz
Ali Tarik Karagöz 2024 年 4 月 25 日
回答済み: Nando 2024 年 11 月 14 日 12:54
I am trying to use MATLAB with some Python integration. However, when I want to apply some changes to the python scripts/functions I need to restart MATLAB to use the updated version.
I have seen some threads/replies from the past but I was not sure if there is a new way to reload the scripts or clear old information.
(matlab script)
clc
clear
clear workspace
pyenv(Version = "C:\Users\m85830ak\Python\Matlab-python\.venv\Scripts\python.exe");
fun = @trial;
x0 = [150,120e5,7850000.0]
output = fun(x0)
A=[];
b=[];
Aeq=[];
beq=[];
lb = [150,74e5,74e5];
ub = [530,300e5,300e5];
[x,fval]= fmincon(fun,x0,A,b,Aeq,beq,lb,ub)
trial.m (matlab function file)
function a = trial(x)
a=py.matlab_file.turbine(x(1),x(2),x(3));
a = -a;
matlab_file.py (Python script)
from pyfluids import Fluid, FluidsList, Input
def turbine(tin, pin, pout):
ntur = 85
m=100
turb_out = (
Fluid(FluidsList.CarbonDioxide)
.with_state(Input.temperature(tin), Input.pressure(pin))
.expansion_to_pressure(pout, ntur)
)
turb_inlet = Fluid(FluidsList.CarbonDioxide).with_state(
Input.temperature(tin), Input.pressure(pin)
)
delta_h = turb_inlet.enthalpy - turb_out.enthalpy
w_tur = delta_h * m
return w_tur
  1 件のコメント
Ali Tarik Karagöz
Ali Tarik Karagöz 2024 年 4 月 26 日
clear classes at the beginning of the script and
function a = trial(x)
mf = py.importlib.import_module("matlab_file");
py.importlib.reload(mf);
% y =[9, 4, 7, 5, 7, 4, 1, 5, 2, 3, 4];
a=mf.SQPOPT(x);
this reload is working.

サインインしてコメントする。

回答 (2 件)

Hassaan
Hassaan 2024 年 4 月 25 日
py.reload(py.matlab_file);
Try using py.reload()
-----------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
It's important to note that the advice and code are based on limited information and meant for educational purposes. Users should verify and adapt the code to their specific needs, ensuring compatibility and adherence to ethical standards.
Professional Interests
  • Technical Services and Consulting
  • Embedded Systems | Firmware Developement | Simulations
  • Electrical and Electronics Engineering
Feel free to contact me.
  1 件のコメント
Ali Tarik Karagöz
Ali Tarik Karagöz 2024 年 4 月 26 日
編集済み: Ali Tarik Karagöz 2024 年 4 月 26 日
No module or function named 'reload'.
Error in untitled (line 6)
py.reload();
I tried py.reload(matlab_file) as well. Both gave this error

サインインしてコメントする。


Nando
Nando 2024 年 11 月 14 日 12:54
This question has been answered here
The solution is
warning('off','MATLAB:ClassInstanceExists')
clear classes
m = py.importlib.import_module('PythonFilename');
py.importlib.reload(m);

カテゴリ

Help Center および File ExchangeCall Python from MATLAB についてさらに検索

製品


リリース

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by