代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/288989/8588323
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
% Copyright 1996 Matthew C. Valenti
% MPRG lab, Virginia Tech
% for academic use only
% This function takes as an input a single bit to be encod
www.eeworm.com/read/432581/8589967
rel bit0.rel
www.eeworm.com/read/288902/8595975
vivi_16bit
www.eeworm.com/read/237367/8626740
asm bit_rev.asm
/* 71IC中国电子资源网 */
/* www.71ic.com */;
; bit_rev.asm - Bit-reversal for FFT (N=2^E
www.eeworm.com/read/387891/8648328
c bit_allocate.c
/*
* bit_allocate.c
* Copyright (C) 2000-2003 Michel Lespinasse
* Copyright (C) 1999-2000 Aaron Holtzman
*
* This file is part of a52dec, a free ATSC
www.eeworm.com/read/387424/8684247
bit mico8.bit
www.eeworm.com/read/387420/8685044
m bit_dec.m
%灰度图象水印的位平面分解程序
function WW=bit_dec(coef)
M=size(coef,1);
WW=zeros(M,M,8);
for l=1:8 %位平面的层号
for m=1:M %M为系数矩阵的尺寸
for n=1:M
if mod(fix(coef(m,n)/2^(l-1)),2)==1
www.eeworm.com/read/387420/8685059
m bit_rec.m
%由位平面重构出多分辨水印
function G=bit_rec(G0) %M为多分辨水印的尺寸,G0为三维矩阵
M=size(G0,1);
G=zeros(M,M);
for i=1:M
for j=1:M
for