240 发简信
IP属地:北京
  • Resize,w 360,h 240
    acess2010创建宏

    创建窗体,取名保存,然后左上角视图点击切换到设计视图, 数据选项卡数据输入改为是,就可以代码生成器了 Private Sub Command0_...

  • 置信区间,置信度

    置信区间是指由[样本统计量](https://baike.baidu.com/item/%E6%A0%B7%E6%9C%AC%E7%BB%9F%...

  • python DAG拓扑排序

    原文:http://blog.csdn.net/pandora_madara/article/details/26478385在DAG中DFS中...

  • python拓扑排序

    class Graph:def init(self):self.V = [] class Vertex:def init(self, x):se...

  • Python并发编程之协程/异步IO

    原文:http://www.jianshu.com/p/4e048726b613 引言 随着node.js的盛行,相信大家今年多多少少都听到了异...

  • event异步回调

    importthreading importtime defdo(event): print('start') time.sleep(1) ev...

  • 链式法则复合函数求导

    链式法则(英文chain rule)即是微积分中的求导法则,用于求一个复合函数的导数,是在微积分的求导运算中一种常用的方法 微积分的求导积法则:...

  • 多目标优化问题详解

    多目标优化问题详解 2017年9月2日byxyjisaw 生活中 ,许多问题都是由相互冲突和影响的多个目标组成。人们会经常遇到使多个目标在给定区...

  • The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()

    错误写法: len(np.where((img[:,:, 0] > 0 |img[:,:, 1] == 0|img[:,:, 2] == 0))...