自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 1821

转载 完美解决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 1269 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 604

原创 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 438

原创 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 2737

原创 调试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 5067

原创 Matlab保存的视频出现花屏现象

这里写自定义目录标题Matlab保存的视频出现花屏现象Matlab保存的视频出现花屏现象1.加入代码 matlab.video.read.UseHardwareAcceleration(‘off’)2.更新win10到最新版...

2019-07-30 19:16:50 270

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除