Calling Python function with multiple outputs in Simulink

Hello everyone,
I'm trying to call a function from a python script with matlab function block in simulink.
The problem is that the python function returns two variables and I can't read these variables in simulink.
Python function :
def test(x, y):
dr_x = x + x*y
dr_y = y + x/y
return dr_x, dr_y
And I call this function with a matlab function block in simulink:
function [dr_x, dr_y] = testQuest(x, y) % Matlab function block code
coder.extrinsic("pyversion")
coder.extrinsic("py.list")
coder.extrinsic("py.tuple")
pyversion;
dr = py.tuple({0,0}); % intialisation
dr_x = 0; % intialisation
dr_y = 0; % intialisation
coder.extrinsic('py.testQ.test')
dr = py.testQ.test(x,y);
dr_c = cell(dr);
dr_x = dr_c(1);
dr_y = dr_c(2);
When I run it, I receive an error saying: MATLAB expression 'py.testQ.test' is not numeric.
I tried different ways such as:
[dr_x, dr_y] = py.testQ.test(x,y);
instead of:
dr = py.testQ.test(x,y);
But all gives me different errors about the type of the output.
I wonder if it's possible to get multiple outputs from the python function in simulink.
Thank you !

답변 (1개)

Yongjian Feng
Yongjian Feng 2021년 7월 9일
편집: Yongjian Feng 2021년 7월 9일
Which version of matlab and python are you using?
I tested 2021a, and calling py.testQ.test(x, y) returns a Python tuple.
ret = py.testQ.test(x, y);
ret{1}
ret{2}

댓글 수: 1

Hello, thank you for the answer, I'm using Matlab 2018b.
Yes, on Matlab there's no problem returning tuple, however if I call the same function on simulink with matlab function block, it doesn't work. I cannot take two variables as output from one python function. So now I'm using interpreted matlab function block to call the function with .m file. It works in this way.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

제품

릴리스

R2018b

질문:

2021년 7월 5일

댓글:

2021년 7월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by