代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/355007/10305672
c bit_inv.c
#include
void main ()
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/162348/10312460
bit new_top.bit
www.eeworm.com/read/354827/10323103
jpg 7-bit.jpg
www.eeworm.com/read/162128/10333517
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/162128/10333546
c bit_inv.c
#include
void main ()
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/162078/10337286
c bit_xor.c
#include
void main(void)
{
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/162078/10337331
c bit_inv.c
#include
void main(void)
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/425401/10358996
m bit_reverse.m
clc;
clear all;
for i=1:8191
temp=i;
j=1;
b=zeros(1,13);
while i>0
b(j)=i-floor(i/2)*2;
i=floor(i/2);
j=j+1;
end
c(temp)=b(1)*(2^12)+b(2)*(2^11)+b(3)*(2^10)+b(4)*(2^9)+b(5)*(2^8)+b(6)*
www.eeworm.com/read/161839/10366062
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/161839/10366096
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