代码搜索:数据输入
找到约 10,000 项符合「数据输入」的源代码
代码结果 10,000
www.eeworm.com/read/141644/12992637
cpp main7-2.cpp
// main7-2.cpp 检验bo7-2.cpp的主程序
#include"c1.h"
#define MAX_NAME 3 // 顶点字符串的最大长度+1
typedef int InfoType; // 存放网的权值
typedef char VertexType[MAX_NAME]; // 字符串类型
#include"c7-2.h"
#include"bo7-
www.eeworm.com/read/141621/12994100
m example2_6.m
%输入矢量分布在一个二维输入空间,其变化范围分别为[0 2]和[0 1],组织特征映射网络维数为[3 5],
%用plotsom( )函数绘制组织特征映射。
P=[rand(1,400)*2;rand(1,400)];
net=newsom([0 2;0 1],[3 5]);
Plotsom(net.layers{1}.positions)
www.eeworm.com/read/141621/12994113
m example2_5.m
%具有如下的给定输入P和输出目标T的线性层,并且检验其输出
P = [1 2 3];
T = [2.0 4.1 5.9];
net = newlind(P,T);
Y = sim(net,P)
www.eeworm.com/read/141621/12994144
m example4_11.m
%要逼近的函数样本点
P = -1:.1:1;
T=sin(pi*P);
plot(P,T,'+');
title('待逼近的函数样本点');
xlabel('输入值');
ylabel('目标值');
%径向基传递函数
p = -3:.1:3;
a = radbas(p);
figure;
plot(p,a)
title('径向基传递函数');
xlabel('输入')
www.eeworm.com/read/141570/12999053
txt 17.txt
Windows操作平台下CGI的实现
华中理工大学图像识别与人工智能研究所 龚建勇
实现WWW服务器与客户的交互可以有多种途径,如CGI、ISAPI、JAVA、ASP等,CGI是一种大家都比较熟悉的一种实现上述功能的有效途径,本文将就如何在Windows平台下实现CGI功能作一介绍。
一、CGI概述
1.CGI概念
CGI即通用网关接口(Common Gate ...
www.eeworm.com/read/141263/13026764
pas msg.pas
unit Msg;
interface
const
MsgPasswordError='输入的密码不正确,请重新输入密码!';
MsgInputWorkNum='请输入工号!';
MsgWorkNumNoExist='此操作员工号不存在,请确认!';
MsgWelcomeQuit='欢迎来到南浦典当行管理系统,现在退出吗?';
www.eeworm.com/read/141263/13026784
~pa msg.~pa
unit Msg;
interface
const
MsgPasswordError='输入的密码不正确,请重新输入密码!';
MsgInputWorkNum='请输入工号!';
MsgWorkNumNoExist='此操作员工号不存在,请确认!';
MsgWelcomeQuit='欢迎来到南浦典当行管理系统,现在退出吗?';
www.eeworm.com/read/141202/13034022
m outa.m
% outa.m 文件名
Q = 4; % 列数
R = 3; % 行数
S = 5; % 神经元数
W = ones ( S, R ); % 将数1赋予SxR维权矩阵W
B = ones ( S, Q ); % 将数1赋予SxQ维偏差矩阵B
P = ones (R, Q ); % 将数1赋予RxQ维输入矩阵P
n = W*