Using MATLAB python engine and returning multiple matrices
18 次查看(过去 30 天)
显示 更早的评论
I'm using MATLAB python engine to automate some data processing. I'm perfectly comfortable using this code to return the correlation coefficient matrix for two random columns:
import matlab.engine
eng = matlab.engine.start_matlab()
rndArray = eng.randn(10, 2)
R = eng.corrcoef(rndArray)
When I use this line in MATLAB:
[R, P] = corrcoef(rndArray)
It would also return the p-value matrix for the results. But the equivalent line in python:
[R, P] = eng.corrcoef(rndArray)
does not return two matrices. What am I doing wrong? How can I get multi results in python?
Thank you
0 个评论
采纳的回答
Robert Snoeberger
2015-10-15
编辑:Robert Snoeberger
2015-10-15
Use the nargout keyword argument [1].
R, P = eng.corrcoef(rndArray, nargout=2)
0 个评论
更多回答(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!