代码搜索:NetWork
找到约 10,000 项符合「NetWork」的源代码
代码结果 10,000
www.eeworm.com/read/256505/11994706
txt rfc1180.txt
组织:中国互动出版网(http://www.china-pub.com/)
RFC文档中文翻译计划(http://www.china-pub.com/compters/emook/aboutemook.htm)
E-mail:ouyang@china-pub.com
译者:( )
译文发布时间:2001-12-28
版权:本中文翻译文档版权归中国互动出版网所有。可以用于非商业用途自由
www.eeworm.com/read/153997/11995716
cpp percept.cpp
//percept.cpp V. Rao, H. Rao
//Perceptron model
#include "percept.h"
#include "stdio.h"
#include "stdlib.h"
ineuron::ineuron(float j)
{
weight= j;
}
float ineuron::act(float x)
{
fl
www.eeworm.com/read/153997/11995724
h percept.h
//percept.h V. Rao, H. Rao
// Perceptron model
#include
#include
#include
class ineuron
{
protected:
float weight;
float activation;
www.eeworm.com/read/153993/11995940
txt linux运行级详解.txt
Linux运行级详解
对于那些在DOS/Win9x/NT平台下的高级用户而言,Linux似乎是一个怪物。没有config.sys,没有 autoexec.bat,具有个人特色的机器配置不知道从何开始。
需要说明的是,很多人认为Linux是Unix的一个克隆,但是,这种说法对于Linux是不公平的。Linux比Unix更加开放,功能更强大。我们应该称之为GNU/Linux ...
www.eeworm.com/read/153823/12004093
m addconnector.m
function [IJC11,IJC12,IJC22] = addconnector(XY1,XY2,IJC2,p,cir,thresh)
%ADDCONNECTOR Add connector from new location to transportation network.
%[IJC11,IJC12,IJC22] = addconnector(XY1,XY2,IJC2,p,cir
www.eeworm.com/read/153565/12027721
h net.h
/*****************************************************************************
* net.h - Network communications global header file.
*
* Copyright (c) 1998 Global Election Systems Inc.
*
* The aut
www.eeworm.com/read/256040/12034110
h edpaddr.h
/*! \file edpaddr.h \brief Emerald Satellite EDP/I2C Bus Addresses. */
//*****************************************************************************
//
// File Name : 'edpaddr.h'
// Title : Eme
www.eeworm.com/read/342008/12047538
m solvelin.m
function [w,b] = solvelin(p,t)
%SOLVELIN Design linear network.
%
% [W,B] = SOLVELIN(P,T)
% P - RxQ matrix of Q input vectors.
% T - SxQ matrix of Q target vectors.
% Returns:
% W - SxR weight
www.eeworm.com/read/255755/12057196
m ffnc.m
%FFNC Feed-forward neural net classifier back-end
%
% [W,HIST] = FFNC (ALG,A,UNITS,ITER,W_INI,T,FID)
%
% INPUT
% ALG Training algorithm: 'bpxnc' for back-propagation (default), 'lmnc'
%