Convert Python list Type to MATLAB double
조회 수: 48 (최근 30일)
이전 댓글 표시
Hello All,
I would like to convert the python list type to matlab double.
I have tried the following,
First approach
out = func.getValues() %python function gives a list of [1,2,...n]
out = cell(out(1:end-1));
out = cellfun(@double,out); %outputs type double
Second approach
out = func.getValues() %python function gives a list of [1,2,...n]
out = func.convlisttoarray(out) %python function imports numpy and converts list to array using numpy.array()
out_double = double(out); % outputs type double
Although the length of the list is 1x150, in both the approaches, Matlab is taking a lot of computation time and the system hangs for a while. This is wierd to me, as a couple of days earlier everything worked fine and it could solve the problem in milli seconds.
Could anyone of you please help me with a faster approach to convert the python list to matlab double?
I am using Matlab 2019b.
Thank you in advance.
Cheers,
Sai Krishna
댓글 수: 0
답변 (1개)
Sean de Wolski
2021년 12월 2일
q = py.list({1,2,3})
cq = cell(q)
[cq{:}]
댓글 수: 3
Sean de Wolski
2022년 7월 18일
Do you have python installed and configured? I.e. what's the output of
pyenv
It should not be empty.
Kent Schonert
2024년 4월 23일
I'm also using 2019b and cannot figure out how to convert python lists to matlab array.
q = py.list({1,2,3})
cq = cell(q) %errors out in 2019b . . .
Error using cell
Conversion to cell from py.list is not possible.
Later versions of Matlab support this, but not 2019b and below, which I (and my workgroup) am stuck using.
참고 항목
카테고리
Help Center 및 File Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!