当前位置:网站首页>Calling Matlab configuration in pycharm: No module named 'matlab.engine'; 'matlab' is not a package
Calling Matlab configuration in pycharm: No module named 'matlab.engine'; 'matlab' is not a package
2022-08-05 05:24:00 【When you are full, you will be strong】
使用Pycharm配置调用matlab经验分享,Read the post summed up,Mainly the article:python调用matlab的方法记录
matlab2018b支持python3.5、3.6但是不支持python3.7.如果遇到不匹配的情况,记得把python的版本降低,或者安装更新版本的matlab,比如:matlab2020b
1. 首先找到matlab安装路径,我的路径在:D:\matlab2020b\extern\engines\python,如下:
This is after the success of the installation directory

2. 利用命令行,cmd,到D:\matlab2020b\extern\engines\python文件夹下,然后依次执行下面命令.
python setup.py build --build-base="builddir" install
python setup.py install --prefix="installdir"
python setup.py build --build-base="builddir" install --prefix="installdir"
python setup.py install --user
例如:
After the success of the installation using the following code to test whether can run:
import matlab.engine
from numpy import *
if __name__ == '__main__':
eng = matlab.engine.start_matlab('MATLAB_R2019b')
A = matlab.double([[1, 2], [5, 6]])
print(type(A), A.size, A)
print(eng.eig(A))
eng.quit()
pass
如果测试报错:No module named ‘matlab.engine’; ‘matlab’ is not a package
记得查看pythonThe interpreter paths are generated insidematlab文件,例如下面的图片:
D:\python3.7\venv\Lib\site-packages\matlab
如果没有,那么把D:\matlab2020b\extern\engines\python下的dist中的matlab文件复制python解释器路径.
如果还是报错,可能的原因如下:
1.Copy the wrong path,检查python解释器路径.
2.D:\matlab2020b\extern\engines\python路径下的matlab的包错误,导致出现问题.Reinstall or directly to find an already installedmatlab复制到python解释器路径.
链接:https://pan.baidu.com/s/1t3fOUrCsh_MHdwludo7h8w
提取码:rjle
–来自百度网盘超级会员V4的分享
python里调用matlab脚本,参考:参考
matlab中编写:
function hellomatlab()
clear
sum = 0;
for i = 1:100
sum = sum +i;
disp(['sum=',num2str(sum)]);
end
pycharm中编写:
import matlab
import matlab.engine
engine = matlab.engine.start_matlab() # 启动matlab engine
engine.hellomatlab(nargout = 0)
注意:matlab代码和pythonCode needs to be in the same directory
调用结果:
边栏推荐
猜你喜欢

Pycharm中使用pip安装第三方库安装失败:“Non-zero exit code (2)“的解决方法

Flutter real machine running and simulator running

OFDM Lecture 16 5 -Discrete Convolution, ISI and ICI on DMT/OFDM Systems

server disk array

DOM及其应用
![[cesium] element highlighting](/img/99/504ca9802db83eb33bc6d91b34fa84.png)
[cesium] element highlighting

软件设计 实验四 桥接模式实验

Wise Force Deleter强制删除工具

SQL(一) —— 增删改查

【过一下8】全连接神经网络 视频 笔记
随机推荐
数据库实验五 备份与恢复
HQL语句执行过程
位运算符与逻辑运算符的区别
BFC(Block Formatting Context)
"PHP8 Beginner's Guide" A brief introduction to PHP
[Go through 7] Notes from the first section of the fully connected neural network video
1.3 mysql batch insert data
【过一下9】卷积
学习总结week2_5
[Decoding tools] Some online tools for Bitcoin
Convert the paper official seal in the form of a photo into an electronic official seal (no need to download ps)
ES6 生成器
Mysql5.7 二进制 部署
2022杭电多校第一场01
【读书】长期更新
RL强化学习总结(一)
Qt制作18帧丘比特表白意中人、是你的丘比特嘛!!!
Understanding and use of C# on set() and get() methods
Using pip to install third-party libraries in Pycharm fails to install: "Non-zero exit code (2)" solution
jvm three heap and stack