代码搜索:Bit

找到约 10,000 项符合「Bit」的源代码

代码结果 10,000
www.eeworm.com/read/372070/9523295

h bit1.h

/** ################################################################### ** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT. ** Filename : Bit1.H ** Project : vvvf_56F8346
www.eeworm.com/read/372070/9523309

c bit1.c

/** ################################################################### ** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT. ** Filename : Bit1.C ** Project : vvvf_56F8346
www.eeworm.com/read/174927/9568319

bit dpram2.bit

www.eeworm.com/read/371061/9569805

m bit_gen.m

%gives the complex fade coefficients %output power is approximately unity %inputs:max_doppler_freq (Hz); sample_freq (Hz); num_samples function [bit_vec] = bit_gen(num_bits, seed) rand(
www.eeworm.com/read/371061/9569807

m symbol_to_bit.m

%symbols are de-mapped to the bits %4PSK (Gray encoded) de-mapped to 2 bits %inputs: in_vec (complex 4PSK vector), num_syms -- length of vector %output: out_vec (binary -- 0/1 -- of length 2*num_sy
www.eeworm.com/read/174810/9573463

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/366524/9810441

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/366524/9810463

c bit_inv.c

#include void main () { int value = 0xFF; printf("The inverse of %X is %X\n", value, ~value); }
www.eeworm.com/read/170223/9814346

c 16bit.c

/* * Copyright (c) 1995 The Regents of the University of California. * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purp
www.eeworm.com/read/169910/9833184

asm bit_rev.asm

; ; bit_rev.asm - Bit-reversal for FFT (N=2^EXP points) ; ; Prototype: void bit_rev(complex *, int); ; ; Entry: arg0: AR0-FFT input sample buffer pointer