码迷,mamicode.com
首页 >  
搜索关键字:functions    ( 1849个结果
Activation Functions and Their Derivatives
1. Sigmoid Function: when z=0,g'(z)=0.25 2. tanh Function: when x=0,tanh'(x)=1 3. Relu ...
分类:其他好文   时间:2018-06-15 20:02:16    阅读次数:125
Matlab filter常用函数
Filtering and Analysis Functions Filtering FunctionDescription fftfilt Filters a signal with a digitalFilter using an FFT-based overlap-add method fil ...
分类:其他好文   时间:2018-06-14 01:15:48    阅读次数:1500
RHEL5.X 重启网卡出现./network-functions: line 78: .: ifcfg-eth0: file not found
错误信息: [root@localhost network-scripts]# service network restart Shutting down interface eth0: ./network-functions: line 78: .: ifcfg-eth0: file not fo ...
分类:Web程序   时间:2018-06-13 11:43:43    阅读次数:812
shell编程基础
1.1 shell编程基础 1.1.1 Shell编程所需的基础知识 熟练使用vim编辑器 熟悉SSH终端 熟练掌握linux常用命令 数量掌握linux正则表达式及三剑客命令(grep、sed、awk) /etc/init.d/functions 熟练使用vim编辑器 熟悉SSH终端 熟练掌握li ...
分类:系统相关   时间:2018-06-12 22:28:52    阅读次数:261
es6
es6: 1.let and const 2.Arorw functions 3.Default parameters 4.for of loop 5.Spread attributes 6.Maps 7.Sets 8.Static methods 9.getters and Setters let ...
分类:其他好文   时间:2018-06-10 23:06:05    阅读次数:238
redux-saga - sagaMiddleware.run对Generator Function的封装
/* generator functions并不能保证Promise函数yield的顺序. 但是sagaMiddleware.run函数对Generator进行了封装对于yield返回的结果在generator中可以保证执行的顺序。 */ var testSage = function*(){ va... ...
分类:其他好文   时间:2018-06-09 23:24:26    阅读次数:528
Javascript Generator Functions
Example Example - Generator functions和Promise var promiseGenerator = function*(){ yield new Promise(r=>setTimeout(r,2000)) yield 5; } let gen = promis ...
分类:编程语言   时间:2018-06-09 23:19:23    阅读次数:225
13 调用函数
Python内置了很多有用的函数,我们可以直接调用。要调用一个函数,需要知道函数的名称和参数,比如求绝对值的函数abs,只有一个参数。可以直接从Python的官方网站查看文档:http://docs.python.org/3/library/functions.html#abs也可以在交互式命令行通 ...
分类:其他好文   时间:2018-06-09 23:08:15    阅读次数:184
《Python运维开发之路》 内置函数&数据结构(六)
一、Python内置函数详解 Python内置函数图解 您也可以访问(里面有各种例子):https://docs.python.org/3/library/functions.html#next 以下分别举例子演示各种函数的使用 大后天更新,撸起袖子加油干!!! 一、Python常用数据结构 目录: ...
分类:编程语言   时间:2018-06-09 18:50:33    阅读次数:182
Scala类型系统——高级类类型(higher-kinded types)
高级类类型就是使用其他类型构造成为一个新的类型,因此也称为 类型构造器(type constructors)。它的语法和高阶函数(higher-order functions)相似,高阶函数就是将其它函数作为参数的函数;高级类类型则是将构造类类型作为参数类型。一个高级类类型可以有一个或者多个类型作为 ...
分类:其他好文   时间:2018-06-08 15:46:46    阅读次数:176
1849条   上一页 1 ... 41 42 43 44 45 ... 185 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!