Filter löschen
Filter löschen

Matlab R2015a crashes when importing/using external libraries

3 Ansichten (letzte 30 Tage)
Hello,
I'm trying to call python libraries through Matlab but it leads me to segmentation faults ...
First of all, I use Matlab R2015a installed on Ubuntu 14.04 (64bits). My Python interpreter is Anaconda3 (thus based on python 3.4) and I have included pyopengl and another external library (referred as bpy). In addition, I have eclipse Luna with PyDev plugin installed on it so I can check the validity of my python scripts.
That being set, my problems are as follow :
  1. The command " import py.bpy.* " makes Matlab crash. The only terminal output I get is " Erreur de segmentation (core dumped) ".
  2. I have a test script calling openGL functionalities (cf. attachment). Basically, it opens a window and draw a ball in it. So far so good, but when I close the window, Matlab crashes again (but I don't get any log).
Of course, these 2 tests works fine under eclipse and the python interpreter is correctly recognized by Matlab (pyversion returns expected results).
Last but not least, I also tried the second test in a Windows 8 environment for the same results...
Help would be more than appreciated !
  1 Kommentar
Slim
Slim am 2 Mai 2015
As Robert Snoeberger guessed, the second problem was link to GLUT itself. Adding the following line before the window creation solved it :
glutSetOption(GLUT_ACTION_ON_WINDOW_CLOSE, GLUT_ACTION_CONTINUE_EXECUTION)
Nervertheless, the first problem remains. I ended up switching from calling python from Matlab to calling Matlab from python.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Robert Snoeberger
Robert Snoeberger am 9 Apr. 2015
For problem 2, what windowing system is your OpenGL script using? Is it GLUT? I have a feeling that closing the window is terminating the application, which is MATLAB. See this stackoverflow question. Does your script use glutMainLoop?

Weitere Antworten (0)

Kategorien

Mehr zu Call Python from MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by