How to call Matlab transfer function from Python using Matlab engine?
조회 수: 12 (최근 30일)
이전 댓글 표시
I am trying to use Matlab in Python and was creating a simple transfer function defined as such using the following code:
% Basic imports
from matlab import engine
import matplotlib.pyplot as plt
import numpy as np
import skfuzzy
% Starting Engine
eng = engine.start_matlab()
% Defining my transfer function
num = [27]
den = [1, 1]
sys1 = eng.tf(num, den)
Running this line on Matlab worked just fine:
num = [27]
den = [1, 1]
sys1 = eng.tf(num, den)
But on Python, I receive this error:
---------------------------------------------------------------------------
MatlabExecutionError Traceback (most recent call last)
<ipython-input-24-6f760c3f7a44> in <module>
1 num = [27]
2 den = [1, 1]
----> 3 sys1 = eng.tf(num, den)
C:\Anaconda\lib\site-packages\matlab\engine\matlabengine.py in __call__(self, *args, **kwargs)
68 return FutureResult(self._engine(), future, nargs, _stdout, _stderr, feval=True)
69 else:
---> 70 return FutureResult(self._engine(), future, nargs, _stdout,
71 _stderr, feval=True).result()
72
C:\Anaconda\lib\site-packages\matlab\engine\futureresult.py in result(self, timeout)
65 raise TypeError(pythonengine.getMessage('TimeoutCannotBeNegative'))
66
---> 67 return self.__future.result(timeout)
68
69 def cancel(self):
C:\Anaconda\lib\site-packages\matlab\engine\fevalfuture.py in result(self, timeout)
80 raise TimeoutError(pythonengine.getMessage('MatlabFunctionTimeout'))
81
---> 82 self._result = pythonengine.getFEvalResult(self._future,self._nargout, None, out=self._out, err=self._err)
83 self._retrieved = True
84 return self._result
MatlabExecutionError:
File C:\Program Files\MATLAB\R2021b\toolbox\control\ctrlmodels\@tf\tf.m, line 370, in tf.tf
The values of the "Numerator" and "Denominator" properties must be arrays of compatible sizes.
답변 (1개)
Kojiro Saito
2022년 1월 18일
Simple way is to convert the list to matlab.double type.
import matlab.engine
# Starting Engine
eng = engine.start_matlab()
# Defining my transfer function
num = matlab.double([27])
den = matlab.double([1, 1])
sys1 = eng.tf(num, den)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Call MATLAB from Python에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!