返回顶部
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 29 下一页
摘要: 补充: 删除js中的数组: 可以直接 使 lenght =0 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 7 </head> 8 <body> 9 <script 阅读全文
posted @ 2019-10-07 15:37 Zcb0812 阅读(214) 评论(0) 推荐(0)
摘要: 第一章:基础操作: openCV画图: 1 from imutils import * #这是封装到一个模块imutils 2 3 image = np.zeros((300,300,3),dtype='uint8') 4 # show(image) #它是个黑色的图片 5 6 #画线 7 if 0 阅读全文
posted @ 2019-10-06 23:23 Zcb0812 阅读(304) 评论(0) 推荐(0)
摘要: 安装: 安装命令 检查是否安装成功命令pip install opencv-python import cv2 pip install tensorflow import tensorflow pip install keras import keras 注:tensorflow 目前不支持3.7 阅读全文
posted @ 2019-10-06 12:56 Zcb0812 阅读(282) 评论(0) 推荐(0)
摘要: 概率论: 1 import numpy as np 2 import pandas as pd 3 import matplotlib.pyplot as plt 4 5 #随机数 当随机种子设定时,随机数不变 6 if 0: 7 r = np.random.RandomState() 8 # r 阅读全文
posted @ 2019-10-05 17:46 Zcb0812 阅读(1314) 评论(0) 推荐(0)
摘要: 第一章:行列式 简单行列式: 三阶行列式: n 阶行列式: 行列式的性质: 行列式的降阶(按行/按列展开): 1 import numpy as np 2 import pandas as pd 3 import matplotlib.pyplot as plt 4 5 if 0: 6 d = np 阅读全文
posted @ 2019-10-05 16:21 Zcb0812 阅读(926) 评论(0) 推荐(0)
摘要: 设置坐标轴: 修改坐标轴上的小标,以及显示坐标轴上的小标: 1 import numpy as np 2 import pandas as pd 3 import matplotlib.pyplot as plt 4 5 if 1: 6 plt.figure(figsize=(14,12)) 7 x 阅读全文
posted @ 2019-10-05 00:36 Zcb0812 阅读(151) 评论(0) 推荐(0)
摘要: CSS 书写规范: 空格规范: 选择器规范: 属性规范: 行高的测量: 基线与基线的距离 我们称为行高!!! 如果不给行高的话,上下距离是等于0的, 如果给了行高就有上下距离了,而且,上下距离始终相等!! 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 阅读全文
posted @ 2019-10-04 15:15 Zcb0812 阅读(180) 评论(0) 推荐(0)
摘要: MatplotLib 中的 fill_between()函数的详细用法: https://blog.csdn.net/kabuto_hui/article/details/84979606 阅读全文
posted @ 2019-10-04 11:11 Zcb0812 阅读(102) 评论(0) 推荐(0)
摘要: 脑筋急转弯: 答案一: 经理生成个随机数num,a员工加上随机数再告诉员工b,依次类推,最会得到个值val , 就可以求出平均值: avg = (val -num)/3 答案二: 设计个程序,让每个员工都输入自己的工资,然后求和平均即可。 链表概述: 预备知识:链表基础: 基础(c语言版) 1 #i 阅读全文
posted @ 2019-10-04 00:10 Zcb0812 阅读(179) 评论(0) 推荐(0)
摘要: 参看博客: https://www.cnblogs.com/clschao/articles/10082587.html CSS的发展历程: 前面学习了HTML,如果要只用HTMl来写样式的话,一般都是写在行内,这样显得很臃肿 所以就出现了CSS(Cascading Style Sheet)层叠样式 阅读全文
posted @ 2019-10-01 15:41 Zcb0812 阅读(200) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 29 下一页