代码搜索:特征码
找到约 10,000 项符合「特征码」的源代码
代码结果 10,000
www.eeworm.com/read/302413/13836086
cpp main.cpp
#include"HuffmanTree.h"
#include
#include
int main()
{
cout
www.eeworm.com/read/129770/5970192
dat funtc25.dat
函数名 iscntrl
函数原型 int iscntrl(int ch);
功能 检查ch是否控制字符(其ASCII码在0和0x1F之间).
返回值 是返回 1,否则返回 0.
包含文件 ctype.h
www.eeworm.com/read/489686/6468804
v compilefsm.v
//有限状态机
//Example 1
//采用Gray码
module fsm1 (Clock, Reset, A, F, G);
input Clock, Reset, A;
output F, G;
reg F, G;
reg [1:0] state;
parameter Idle = 2'b00, Start = 2'b01,
Stop =
www.eeworm.com/read/485855/6548486
m g729code.m
function G729code(speech)
%clc;
%clear all;
%yout=wavread('2');
%speech=yout';
%以80点为一帧确定帧数
tic
L=floor(length(speech)/80);
codestream=[];%编码码流
%定义全局变量
QuanJuValue(speech);
present_speech
www.eeworm.com/read/349895/6684055
c 97.c
#include
#include
#include
#include
/*定义宏来指定控制键的ASCII码值*/
#define ESCGAME 1
#define SHOOT 57
#define MOVELEFT 75
#define MOVERIGHT 77
/*定义潜艇的移
www.eeworm.com/read/401301/11559723
v compilefsm.v
//有限状态机
//Example 1
//采用Gray码
module fsm1 (Clock, Reset, A, F, G);
input Clock, Reset, A;
output F, G;
reg F, G;
reg [1:0] state;
parameter Idle = 2'b00, Start = 2'b01,
Stop =
www.eeworm.com/read/400885/11567303
m arencode.m
function arcode = arencode(symbol, pr, seqin)
%算术编码
%输出:码串
%输入:symbol:字符行向量
% pr:字符出现概率
% seqin:待编码字符串
high_range = [];
for k = 1: length(pr),
high_range = [high_range sum(pr(1
www.eeworm.com/read/400872/11567486
c passwordlock.c
#include "PWLock.h"
/* 键消抖延时函数 */
void delay(void)
{
uchar i;
for (i=300;i>0;i--);
}
/* 键扫描函数 */
uchar keyscan(void)
{
uchar scancode,tmpcode;
P1 = 0xf0; // 发全0行扫描码
if ((P
www.eeworm.com/read/347982/11620033
c 97.c
#include
#include
#include
#include
/*定义宏来指定控制键的ASCII码值*/
#define ESCGAME 1
#define SHOOT 57
#define MOVELEFT 75
#define MOVERIGHT 77
/*定义潜艇的移
www.eeworm.com/read/261097/11666709
m walsh_sequence_generator.m
function [walsh_matrix] = walsh_sequence_generator(num)
% num=input('请输入哈达曼(Hadamard)矩阵的阶数生成walsh扩频码:');
if num < 1 % 如果输入参数为空,默认输出0阶哈达曼矩阵
num = 0;
end
if