搜索结果
找到约 1,269 项符合
P-Channel 的查询结果
人工智能/神经网络 #include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define
#include "iostream.h"
#include "iomanip.h"
#define N 20 //学习样本个数
#define IN 1 //输入层神经元数目
#define HN 8 //隐层神经元数目
#define ON 1 //输出层神经元数目
double P[IN] //单个样本输入数据
double T[ON] //单个样本教师数据
double W[HN][IN] //输入层至隐层权值
double V[ON][HN] //隐层至输出层权值 ...
matlab例程 % 用于模拟PN结中载流子的分布、电场和电势 % 总长为 L 的半导体截面上
% 用于模拟PN结中载流子的分布、电场和电势
% 总长为 L 的半导体截面上,左侧为 N 区,掺杂浓度 NA;右侧为 P 区,掺杂浓度为 ND
% 假设截面积足够大
其他 Process a binary data stream using a communication system that consists of a baseband modulator, c
Process a binary data stream using a communication system that
consists of a baseband modulator, channel, and demodulator.
Compute the system s bit error rate (BER). Also, display
the transmitted and received signals in a scatter plot.
通讯/手机编程 The exercise should be finished in English. 2. According to Prof. Zhang s requirement, this exercis
The exercise should be finished in English.
2. According to Prof. Zhang s requirement, this exercise mainly focuses on the BER performance of some wireless communication system using specific coding and modulation type through the AWGN channel. Signal-to-Noise ration (SNR) varies from 5dB to 20dB.
通讯编程文档 MPC8260-MCC-HOWTO Abstract: This document attempts to give the linux developer community of motoro
MPC8260-MCC-HOWTO
Abstract:
This document attempts to give the linux developer community of motorola(R) s
mpc8260 processor a fairly good idea of programming details of Multi
Channel controller.
This document can be distributed under GPL version 2.0 or later, GPL is
available at (http://www.gnu.org ...
MySQL数据库 这是MySQL官方测试用的数据库
这是MySQL官方测试用的数据库,费了一番功夫找到的。使用命令
mysql -u root -p <sakila-schema.sql
mysql -u root -p <sakila-data.sql
导入数据库中,数据库结构参见mysql文档。
微处理器开发 为BLDC的电流环控制
为BLDC的电流环控制,电流环采用P调节,和分区域调节,比较实用
Linux/Unix编程 一个基于GTK+的单词数值计算器
一个基于GTK+的单词数值计算器,1、 按照规则计算单词的值,如果 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 26个字母(全部用大写)的值分别为 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26,如:
WINJACK这个单词的值就为:W+I+N+J+A+C+K=23+9+14+1+3+11=71%
HARDWORK=H+A+R+D+W+O ...
数学计算 大整数问题 设n是一个k(1≤k≤80)位的十进制正整数。 问题1:对于给定的任意整数n
大整数问题
设n是一个k(1≤k≤80)位的十进制正整数。
问题1:对于给定的任意整数n,编程计算满足p3+p2+3p≤n的位数为m的p的个数。
问题2:对于给定的任意整数n,编程求解满足p3+p2+3p≤n的p的最大值。
要求:
对于给定的每一个测试文件(形如:numberX_input.txt),分别生成一个结果文件(形如:numberX_out.txt)。比 ...
Linux/Unix编程 pass.words是弱口令字典
pass.words是弱口令字典,是一个纯文本文件,每行一个口令,可以向里面添加候选口令。
pass.c是进行口令检查的c语言原程序,有两个命令行参数
-w file: 可以使用该选项指定口令字典
-P:默认情况下对/etc/shadow中的用户检查弱口令,可以使用该选项指定检查的文件
编译gcc –o pass pass.c –l crypt
由于要使用加密函数,所 ...