Hello User This is nothing, but a simple program which IF kept in start of windows will shut down the system by itself within five minutes of starting. It takes the time from the system & starts its timer to shut down after 5 minutes (not considering seconds). U can use shutdown.exe,once started there is only one exit that u know only. EXIT : DOUBLECLICK TIME TO ENABLE EXIT
标签: nothing program windows simple
上传时间: 2014-12-20
上传用户:xinyuzhiqiwuwu
Hello User This is nothing, but a simple program which IF kept in start of windows will shut down the system by itself within five minutes of starting. It takes the time from the system & starts its timer to shut down after 5 minutes (not considering seconds). U can use shutdown.exe,once started there is only one exit that u know only. EXIT : DOUBLECLICK TIME TO ENABLE EXIT
标签: nothing program windows simple
上传时间: 2016-12-26
上传用户:xfbs821
Hello User This is nothing, but a simple program which IF kept in start of windows will shut down the system by itself within five minutes of starting. It takes the time from the system & starts its timer to shut down after 5 minutes (not considering seconds). U can use shutdown.exe,once started there is only one exit that u know only. EXIT : DOUBLECLICK TIME TO ENABLE EXIT
标签: nothing program windows simple
上传时间: 2016-12-26
上传用户:lx9076
Hello User This is nothing, but a simple program which IF kept in start of windows will shut down the system by itself within five minutes of starting. It takes the time from the system & starts its timer to shut down after 5 minutes (not considering seconds). U can use shutdown.exe,once started there is only one exit that u know only. EXIT : DOUBLECLICK TIME TO ENABLE EXIT
标签: nothing program windows simple
上传时间: 2016-12-26
上传用户:yxgi5
Hello User This is nothing, but a simple program which IF kept in start of windows will shut down the system by itself within five minutes of starting. It takes the time from the system & starts its timer to shut down after 5 minutes (not considering seconds). U can use shutdown.exe,once started there is only one exit that u know only. EXIT : DOUBLECLICK TIME TO ENABLE EXIT
标签: nothing program windows simple
上传时间: 2014-03-06
上传用户:ruan2570406
% Train a two layer neural network with the Levenberg-Marquardt % method. % % IF desired, it is possible to use regularization by % weight decay. Also pruned (ie. not fully connected) networks can % be trained. % % Given a set of corresponding input-output pairs and an initial % network, % [W1,W2,critvec,iteration,lambda]=marq(NetDef,W1,W2,PHI,Y,trparms) % trains the network with the Levenberg-Marquardt method. % % The activation functions can be either linear or tanh. The % network architecture is defined by the matrix NetDef which % has two rows. The first row specIFies the hidden layer and the % second row specIFies the output layer.
标签: Levenberg-Marquardt desired network neural
上传时间: 2016-12-27
上传用户:jcljkh
This function checks the mailbox to see IF a message is available. Unlike OSMboxPend(), OSMboxAccept() does not suspend the calling task IF a message is not available.
标签: OSMboxAccep OSMboxPend available function
上传时间: 2014-12-04
上传用户:hphh
//Euler 函数前n项和 /* phi(n) 为n的Euler原函数 IF( (n/p) % i == 0 ) phi(n)=phi(n/p)*i else phi(n)=phi(n/p)*(i-1) 对于约数:divnum 如果i|pr[j] 那么 divnum[i*pr[j]]=divsum[i]/(e[i]+1)*(e[i]+2) //最小素因子次数加1 否则 divnum[i*pr[j]]=divnum[i]*divnum[pr[j]] //满足积性函数条件 对于素因子的幂次 e[i] 如果i|pr[j] e[i*pr[j]]=e[i]+1 //最小素因子次数加1 否则 e[i*pr[j]]=1 //pr[j]为1次 对于本题: 1. 筛素数的时候首先会判断i是否是素数。 根据定义,当 x 是素数时 phi[x] = x-1 因此这里我们可以直接写上 phi[i] = i-1 2. 接着我们会看prime[j]是否是i的约数 如果是,那么根据上述推导,我们有:phi[ i * prime[j] ] = phi[i] * prime[j] 否则 phi[ i * prime[j] ] = phi[i] * (prime[j]-1) (其实这里prime[j]-1就是phi[prime[j]],利用了欧拉函数的积性) 经过以上改良,在筛完素数后,我们就计算出了phi[]的所有值。 我们求出phi[]的前缀和 */
上传时间: 2016-12-31
上传用户:gyq
void insert_sort(int *a,int n) { IF(n==1) return insert_sort(a,n-1) int temp=a[n-1] for(int i=n-2 i>=0 i--) { IF(temp<a[i]) a[i+1]=a[i] else break } a[i+1]=temp }
标签: insert_sort int return void
上传时间: 2014-01-22
上传用户:banyou
This a C Standard Library E-Book For SimplIFied Chinese Version. You can download IF you re interesting
标签: SimplIFied Standard download Library
上传时间: 2017-01-07
上传用户:libenshu01