AttributeError: module 'matlab.engine' has no attribute 'struct'
时间: 2023-11-09 07:07:26 浏览: 152
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为在使用matlab.engine模块时,没有正确地设置MATLAB引擎的路径。你可以尝试在代码中添加以下语句来设置路径:
```python
import matlab.engine
eng = matlab.engine.start_matlab("-desktop")
```
其中"-desktop"参数可以让MATLAB引擎在桌面模式下启动,这样可以更方便地调试和查看MATLAB引擎的输出。
阅读全文