Run Python script with numpy and pandas in Matlab

97 vues (au cours des 30 derniers jours)
Francesc Naya
Francesc Naya le 10 Déc 2021
Commenté : Luc VIGNAUD le 5 Déc 2022
I am trying tu run a python script using the Matlab "pyrunfile" function (Matlab version is 2021b and Python version is 3.9 using on Anaconda)
This function works when I run the following simple Python script :
> greetings = "hello"
> print(greetings)
But it does not work for another Python script that includes :
> import numpy as np
> import pandas as pd
> import matplotlib.pyplot as plt
It gives me the following error (I have checked NumPy version is 1.20.3):
Error using __init__><module> (line 48)
Python Error: ImportError:
IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.
We have compiled some common reasons and troubleshooting tips at:
https://numpy.org/devdocs/user/troubleshooting-importerror.html
Please note and check the following:
* The Python version is: Python3.9 from "C:\Program Files\MATLAB\R2021b\bin\win64\MATLAB.exe"
* The NumPy version is: "1.20.3"
and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.
Original error was: DLL load failed while importing _multiarray_umath: The specified module could not be found.
Error in __init__><module> (line 145)
Error in <string>><module> (line 1)
Thank you
  1 commentaire
Ahmed Ben Hassine
Ahmed Ben Hassine le 9 Sep 2022
Hello ,
Could you find a solution to fix this ?
I have the same problem .
Thanks!

Connectez-vous pour commenter.

Réponses (2)

Sean de Wolski
Sean de Wolski le 10 Déc 2021
The python that MATLAB is calling apparently does not have numpy installed properly. Check your system path for the version of python in use.
A minimal working example I just made works fine:
npx.py
import numpy as np
x = np.array(1)
And
>> x = pyrunfile('npx.py','x')
x =
Python ndarray:
1
Use details function to view the properties of the Python object.
Use int64 function to convert to a MATLAB array.
>> double(x)
ans =
1
>>

Francesca Lorenzutti
Francesca Lorenzutti le 19 Oct 2022
Hello,
I just had the exact same problem. Just launch matlab from the anaconda prompt. Then, you don't need to run pyversion or pyenv, just use
p=pyrunfile("myscript.py");
This solved the problem for me.
Good luck!
  1 commentaire
Luc VIGNAUD
Luc VIGNAUD le 5 Déc 2022
"Just launch matlab from the anaconda prompt." was the solution for me (Python 3.9 & NumPy 1.20.3)
but remains unsupported solution !!!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Call Python from MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by