- 博客(7)
- 收藏
- 关注
转载 mac中matlab安装ffmpeg后出现/bin/bash: ffmpeg: command not found
搬运:https://www.mathworks.com/matlabcentral/answers/155964-use-ffmpeg-in-matlab问题描述:安装ffmpeg后,mac的terminal里可以运行ffmpeg,但matlab里无法调用ffmpeg,且报错“/bin/bash: ffmpeg: command not found”解决方法:1 ) Go to term...
2020-02-22 22:43:04
1925
转载 完美解决Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll.
完美解决Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll.问题描述:解决方案:问题描述:window环境下,使用Anaconda管理python的时候,首次运行py文件出现“Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll”1解决方案:将“mkl_intel_...
2020-01-04 18:21:57
1401
1
原创 创建虚拟环境(tensorflow gpu版)
创建虚拟环境conda create -n yourname python=3.6 # 创建虚拟环境,备注:一定要加上python版本号activate yourname # 进入虚拟环境conda install cudatoolkit=9.0 # 在虚拟环境中安装cuda和cudnnpip install tensorflow-gpu1.6.0 #安装tensorflowpip in...
2020-01-04 18:12:53
650
原创 import sklearn 出现“ImportError DLL load failed 找不到指定的程序”
import sklearn 出现“ImportError DLL load failed 找不到指定的程序”import sklearn 出现“ImportError DLL load failed 找不到指定的程序”解决方法:conda install numpy==1.15.3原因:numpy的1.17版本向上不兼容,导致与scipy和sklearn不兼容所以需要对numpy进行...
2020-01-04 18:10:25
486
原创 matlab 对数组进行特定顺序的排序 和恢复原始顺序
这里写自定义目录标题% 示例change orderb = [7,2;14,3;-10,1;12,9];c = [2; 3; 1; 4];%2处于c中第一个,代表把b中的第2行搬到第一行b2cp = b(c,:);a(c,:) = b2cp;%a就是对b2cp进行还原,得到b,a = b% b2cp =% 14 3% -10 1% 7 ...
2019-09-16 21:39:04
3175
原创 调试matlab时出现Not enough input arguments.
情景:主函数为main.m, 主函数调用了子函数son.m那么,当你单独运行son.m的断点时,就会出现Not enough input arguments。解决方案:在main.m和son.m中都设置断点,然后运行main.m...
2019-08-26 13:45:55
5574
原创 Matlab保存的视频出现花屏现象
这里写自定义目录标题Matlab保存的视频出现花屏现象Matlab保存的视频出现花屏现象1.加入代码 matlab.video.read.UseHardwareAcceleration(‘off’)2.更新win10到最新版...
2019-07-30 19:16:50
339
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人