自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 收藏
  • 关注

原创 使用vs code 初入门

最近打算用vs code来写c++程序,以前没有安装,今天试了一下,附上初入门的链接,便于安装和编写程序。下载:https://code.visualstudio.com/https://sourceforge.net/projects/mingw-w64/说明:https://code.visualstudio.com/docs/languages/cpphttps://zhuanlan.zhihu.com/p/77645306有了上面的就足以完成入门...

2021-01-10 19:27:36 144

原创 pytorch一步步学习链接

pytorch一步步学习链接https://github.com/pytorch/pytorchhttps://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html

2019-11-29 10:24:22 234

原创 ImportError: cannot import name '_path' from 'matplotlib'

在运行python程序时因为有:语句:import matplotlib.pyplot as plt而出现错误如下:ImportError: cannot import name ‘_path’ from ‘matplotlib’具体方法为pip uninstall matplotlibpip install matplotlib...

2019-09-06 11:23:05 1639

原创 matlab complier runtime 添加路径

最近一不小心把系统变量里的path改了导致好多软件无法正常使用。其中有需要matlab的运行环境的,鉴于自己之前已经安装好,所以只要再添加环境变量即可:具体添加的路径为:…\MATLAB Compiler Runtime\v84\runtime\win64...

2019-06-25 14:19:25 3311

原创 谷歌翻译api小尝试

代码:import requests# 翻译英文为中文urlbefore='http://translate.google.cn/translate_a/single?client=gtx' \ '&sl=en&tl=zh-CN'# urlbefore2='&dt=at&dt=bd&dt=ex&dt=ld&dt=m...

2018-12-07 10:45:56 902

原创 关于奇异值分解(svd)

找到一篇很好的文章:具体链接如下:http://www.ams.org/publicoutreach/feature-column/fcarc-svd主要用于PCA分析或者图片压缩,降噪处理在matlab中实现[s,v,d]=svd(double(im));re=s(:,:)*v(:,1:8)*d(:,1:8)';figure,imshow(re,[])...

2018-11-01 12:31:34 231

原创 解决mayavi调用时出现错误

错误内容:qt.qpa.plugin: Could not find the Qt platform plugin “windows” in “”This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix thi...

2018-10-31 22:11:12 1897 1

原创 解压带密码的rar

#解压rar把winrar添加环境变量后在cmd中输入winrar e -p123456 E:\python_work\12345.rar E:\python_work\out参数依次为 解压 密码 源文件 解压到

2018-10-25 11:09:38 6036 1

原创 python知识点:tkinter-filedialog-asksaveasfilename参数

python知识点:tkinter-filedialog-asksaveasfilename参数# For the following classes and modules:## options (all have default values):## - defaultextension: added to filename if not explicitly given## -...

2018-10-23 15:55:06 13440

空空如也

空空如也

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

TA关注的人

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