Using MATLAB python engine and returning multiple matrices
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Michael
le 15 Oct 2015
Modifié(e) : Robert Snoeberger
le 15 Oct 2015
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 commentaires
Réponse acceptée
Robert Snoeberger
le 15 Oct 2015
Modifié(e) : Robert Snoeberger
le 15 Oct 2015
Use the nargout keyword argument [1].
R, P = eng.corrcoef(rndArray, nargout=2)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Call MATLAB from Python dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!