代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/429412/8809477
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/187002/8885036
c bit_xor.c
#include
void main ()
{
printf("0 ^ 0 is %d\n", 0 ^ 0);
printf("0 ^ 1 is %d\n", 0 ^ 1);
printf("1 ^ 1 is %d\n", 1 ^ 1);
printf("1 ^ 2 is %d\n", 1 ^ 2);
printf("15 ^
www.eeworm.com/read/428181/8885058
bit kd_cpu.bit
www.eeworm.com/read/187002/8885065
c bit_inv.c
#include
void main ()
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/428158/8889532
m bit_symbol.m
function [alphabet] = bit_symbol(M,type,M1,M2)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
www.eeworm.com/read/186599/8923063
cpp bit_analyzer.cpp
//
// File = bit_analyzer.cpp
//
#include
#include
#include "parmfile.h"
#include "bit_analyzer.h"
#include "typedefs.h"
#include "model_graph.h"
#include "syst_graph.
www.eeworm.com/read/383610/8932709
m expand_bit.m
function [squence]=expand_bit(x)
k=1;
for i=1:length(x)
for j=k:k+63
if(x(i)>0)
squence(j)=1;
else
squence(j)=0;
end
end
k=k+64;
end
plot(squence);
www.eeworm.com/read/427507/8939111
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
www.eeworm.com/read/427380/8948917
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/427222/8960734