代码搜索:arithmetic
找到约 7,844 项符合「arithmetic」的源代码
代码结果 7,844
www.eeworm.com/read/258642/11849016
v arithmetic_unit.v
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|12 Jun 2002 17:04:04 -0000
vti_extenderversion:SR|5.0.2.4330
vti_lineageid:SR|{DAEAF75F-FE1A-4D8F-B019-981067483762}
vti_cacheddtm:TX|12 Jun 2002 17
www.eeworm.com/read/344755/11861728
doc arithmetic_collect.doc
www.eeworm.com/read/253716/12204063
ppt distributed arithmetic.ppt
www.eeworm.com/read/150994/12240713
bas comp_arithmetic.bas
Attribute VB_Name = "Comp_Arithmetic"
' **********************************************************************
' 描 述:21种加密54种压缩 算法模块 海阔天空收集整理
' Play78.com : 网站导航,源码之家,绝对开源
' 海阔天空整理,有问题请上www.
www.eeworm.com/read/252324/12286296
m arithmetic_encoding.m
function [m,n,color,allLow,allHigh,numberlow,numberhigh]=arithmetic_encoding(I)
%I=imread('001.bmp')
%imshow(I);
%clear
%I=[3 3 1 1 3 3 1 2;2 3 3 1 3 2 3 2;1 2 3 3 3 3 1 2];
%I=[1 1 1 1 0 0 1 0 1
www.eeworm.com/read/252324/12286303
m arithmetic_decoding.m
% decoding
function [Mat]=arithmetic_decoding(m,n,color,allLow,allHigh,numberlow,numberhigh)
Mat = zeros(m,n);
for k = 1:m
for kk = 1:n
indx = numberlow
www.eeworm.com/read/233138/14167040
m property_arithmetic.m
中国数学建模-编程交流-概率算法简介 ├数学思想
├编程交流
├学术杂谈
├English Fans
登录 注册 搜索 风格 论坛状态 论坛展区 社区服务 社区休闲 网站首页 我能做什么
>> VC++,C,Perl,Asp...编程学习,算法介绍.
中国数学建模 → 学术区 → 编程交流 → 概率算
www.eeworm.com/read/124944/14523175
c arithmetic_decode.c
/* ARITHMETIC DECODING ALGORITHM. */
#include "arithmetic_coding.h"
/* CURRENT STATE OF THE DECODING. */
static code_value value; /* Currently-seen code value */
static code_value l
www.eeworm.com/read/124944/14523180
h arithmetic_coding.h
/* DECLARATIONS USED FOR ARITHMETIC ENCODING AND DECODING */
/* SIZE OF ARITHMETIC CODE VALUES. */
#define Code_value_bits 16 /* Number of bits in a code value */
typedef long code_value; /* Ty
www.eeworm.com/read/124944/14523185
c arithmetic_encode.c
/* ARITHMETIC ENCODING ALGORITHM. */
#include "arithmetic_coding.h"
static void bit_plus_follow(); /* Routine that follows */
/* CURRENT STATE OF THE ENCODING. */
static code_