代码搜索:感知无线电
找到约 539 项符合「感知无线电」的源代码
代码结果 539
www.eeworm.com/read/227537/14421344
c dtm8-td-b1.c
/******************************************/
/* 燕山大学无线电爱好者协会 */
/* 电子调速器 */
/* 作者:张翃鹏 2005-2-27 9:04:40 */
/* 目标MCU:MEGA8 晶振:INT RC 8MHZ
www.eeworm.com/read/227537/14421347
_c dtm48-td._c
/******************************************/
/* 燕山大学无线电爱好者协会 */
/* 电子调速器 */
/* 作者:张翃鹏 2005-2-27 9:04:40 */
/* 目标MCU:MEGA8 晶振:INT RC 8MHZ
www.eeworm.com/read/227537/14421354
c dtm48-td.c
/******************************************/
/* 燕山大学无线电爱好者协会 */
/* 电子调速器 */
/* 作者:张翃鹏 2005-2-27 9:04:40 */
/* 目标MCU:MEGA8 晶振:INT RC 8MHZ
www.eeworm.com/read/227537/14421367
_c dtm8-td._c
/******************************************/
/* 燕山大学无线电爱好者协会 */
/* 电子调速器 */
/* 作者:张翃鹏 2005-2-27 9:04:40 */
/* 目标MCU:MEGA8 晶振:INT RC 8MHZ
www.eeworm.com/read/250207/12424822
cpp ganzhiqi.cpp
// GanZhiQi.cpp : Defines the entry point for the console application.
//感知器算法程序
#include "stdafx.h"
#include
#include
//样本点结构
typedef struct sample
{
int x;
www.eeworm.com/read/143181/12890531
txt c51读写ds12887程序.txt
C51读写DS12887程序
已用于开发的无线电子衡器上
包括RTC.h及RTC.c
/////////////////////////////////////////
// 接口 RTC.h
////////////////////////////////////////
#include
//*******DS12887 *******
#def
www.eeworm.com/read/270007/4242254
java perceptron.java
package edu.ict.discriminant;
import java.util.List;
import org.apache.commons.lang.ArrayUtils;
import edu.ict.SamplePoint;
import edu.ict.Utils;
/**
* 感知器算法实现类
*
* @author ysh
*
www.eeworm.com/read/285471/8838441
dat bookinfo.dat
[General Information]
书名=无线电爱好者丛书精品系列 新型实用电源电路集锦
作者=杨帮文
页数=274
SS号=0
下载位置=http://192.168.36.205/02/diskdw/dw71/09/!00001.pdg
www.eeworm.com/read/260039/11749909
h xl_logger.h
#ifndef _XL_LOGGER_H_
#define _XL_LOGGER_H_
#include "xl_global.h"
//!
enum ChannelTag
{
CT_TEST = 0,
CT_ERROR,
CT_CMD , //命令
CT_SENSE, //感知
CT_TIME, //计时
www.eeworm.com/read/332284/12764935
m singleperceptron.m
% =============感知准则单样本修正算法(SinglePerceptron)================
% X: 训练样本
% x: 待判样本
% N: 每类样本数
% Y: 规范化增广样本向量
% W: 权向量
% Ye: 错分样本集合
% 对应课本Page94
% ============================================