摘要: submile text3常用快捷键 Ctrl+shift+P 打开命令行窗口 esc 退出命令框或程序运行框 Ctrl+Z 撤销,倒退 Ctrl+Y 恢复撤销 Ctrl+B 运行程序 Ctrl+Break 中断程序 Ctrl+Enter 建立下一空白行 程序中需要外界输入值时需要快捷键设置: [ 阅读全文
posted @ 2021-08-20 16:46 Uriel-w 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 校外通过登录广西壮族自治区图书馆进入知网 广西壮族自治区图书馆:http://www.gxlib.org.cn/ 进入后需要先注册账号,然后点击数字资源导航 搜索栏搜索知网 点击中国知网总库入口 完成 阅读全文
posted @ 2021-07-18 21:36 Uriel-w 阅读(1550) 评论(0) 推荐(1) 编辑
摘要: 当tensorflow和numpy版本对应出现问题时运行程序会出现以下错误: D:\anaconda3\lib\site-packages\tensorflow\python\framework\dtypes.py:523: FutureWarning: Passing (type, 1) or ' 阅读全文
posted @ 2021-07-01 17:03 Uriel-w 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 了解语音识别中特征提取过程 1 #读取音频文件 2 import scipy.io.wavfile as wav 3 # Scipy高级科学计算库,包含各种运算 4 #io输入输出包,不同格式文本的输入输出,.wavfile操作wav文件 5 import matplotlib.pyplot as 阅读全文
posted @ 2021-06-29 19:13 Uriel-w 阅读(1125) 评论(0) 推荐(0) 编辑
摘要: 打开安装好的Anaconda Prompt: 输入命令(下面python的版本可以根据自己下载Anaconda中内置的版本来更改): conda create -n tensorflow python=3.5 下载完成后激活tensorflow: activate tensorflow 然后下载Te 阅读全文
posted @ 2021-06-26 22:30 Uriel-w 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 一、CUDA的安装: 1、首先在安装CUDA前需要查看电脑能安装什么版本, 方法是通过打开控制面板搜索NVIDIA: 进入NVIDIA控制面板,点击帮助,选中系统信息: 查看组件信息,可以看到该电脑能运行的CUDA版本: / 2、通过官网下载对应的CUDA版本:https://developer.n 阅读全文
posted @ 2021-06-26 21:36 Uriel-w 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 一.git的安装和配置 1.git的安装命令: sudo apt-get install git 2.git配置 git config --global user.name "自己的昵称" git config --global user.email "邮箱地址" 二.nouveau禁用 1.通过命 阅读全文
posted @ 2021-06-22 23:41 Uriel-w 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 1 #算法:解决问题的方法和步骤 2 3 #排序算法 4 #选择排序 5 def select(items, comp = lambda x,y : x <y): 6 #通过隐藏函数lambda判断两个数的大小 7 items = items[:] 8 for i in range(len(item 阅读全文
posted @ 2021-06-20 20:58 Uriel-w 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1 #生成式 2 prices = { 3 'meat' : 543.2, 4 'duck' : 123.56, 5 'dog' : 45.67, 6 'horse' : 78.55, 7 'miao' : 123.55 8 } 9 price = {key : value for key, val 阅读全文
posted @ 2021-06-17 23:05 Uriel-w 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1 #显示跑马灯文字 2 import os 3 import time 4 def main(): 5 content = str(input('输入显示内容:')) 6 while True: 7 os.system('cls') 8 print(content) 9 time.sleep(0. 阅读全文
posted @ 2021-06-17 23:03 Uriel-w 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 1 #函数应用:计算两个正数的最大公约数和最小公倍数 2 def function1(n1,n2): 3 if n1 > n2: 4 n1 , n2 = n2 , n1 5 for i in range(n1,0,-1): 6 if n1 % i == 0 and n2 % i == 0: 7 re 阅读全文
posted @ 2021-06-17 23:01 Uriel-w 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 1.安装好Pycharm并打开Pycharm 2.打开File,找到Settings并打开 3.打开Settings中的Pulgins,选择Marketplace 搜索'chinese': 下载安装后重启软件汉化成功 阅读全文
posted @ 2021-06-12 13:57 Uriel-w 阅读(480) 评论(0) 推荐(0) 编辑
摘要: # 1.首先进入官网下载软件 (防止电脑变卡尽量不要安装在c盘,然后一直next ):https://www.sublimetext.com/ # 2.安装Package Control管理插件 使用ctrl + ` (感叹后左边的那个键位),输入以下内容 import urllib.request 阅读全文
posted @ 2021-06-11 19:15 Uriel-w 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1 #1.温度的转换 2 a = float(input('请输入华氏温度')) 3 b = (a - 32) /1.8 4 print('%.1f华氏度=%.1f摄氏度' %(a,b)) 5 6 #2.根据半径求圆的周长和面积 7 a = float(input('输入半径')) 8 s = 3. 阅读全文
posted @ 2021-06-11 13:28 Uriel-w 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 1. 虚断: 由于运算放大器的输入电阻要求越大越好,理想情况下为无穷大,因此输入电流几乎为零,所以我们可以看做虚拟断路来分析问题。 2. 虚短: 由于运放的电压增益一般大于一万,但输出电压通常在十几伏,因此输入电压极小,两输入电压几乎相等,所以我们在分析问题时可以把它看做虚拟短路来分析。 阅读全文
posted @ 2021-03-17 12:37 Uriel-w 阅读(3344) 评论(0) 推荐(0) 编辑