代码搜索:bitvector

找到约 265 项符合「bitvector」的源代码

代码结果 265
www.eeworm.com/read/187932/5215223

old bitvector.java.old

package com.mellowtech.disc; import java.nio.ByteBuffer; import se.sics.util.DataTypeUtils; /** * Vector of bits. Methods for inserting Elias Gamma/Delta, Golomb * and Variable Byte coding of int
www.eeworm.com/read/403944/11497870

cpp e04-04.cpp

// ======================================================= // Chapter 4, Example 1 // The Bitvector Class // ======================================================= #include "Bitvector.h"
www.eeworm.com/read/260986/11676161

cpp e04-04.cpp

// ======================================================= // Chapter 4, Example 1 // The Bitvector Class // ======================================================= #include "Bitvector.h"
www.eeworm.com/read/114622/15045167

cpp bvtest.cpp

// File from page 195 in "Thinking in C++" by Bruce Eckel ////////////////////////////////////////////////// // From the compressed package ECKELT02.ZIP 4/11/95 // (Original ECKELT01.ZIP dated 2/21
www.eeworm.com/read/114622/15045152

h bitvect.h

// File from page 188 in "Thinking in C++" by Bruce Eckel ////////////////////////////////////////////////// // From the compressed package ECKELT02.ZIP 4/11/95 // (Original ECKELT01.ZIP dated 2/21
www.eeworm.com/read/163300/10166642

m calcphase.m

function Phase = CalcPhase(BitVector) switch BitVector(1) case 0, switch BitVector(2) case 0, % [0,0] case Phase = pi/4; case 1, % [0,1] case Phase = 3*pi/4; end case 1, switch BitVector(2)
www.eeworm.com/read/459070/7283021

m invphasemap.m

function [BitVector] = InvPhaseMap(Phase) % Just an example.. You should define your own inverse phase map based on % the Phase mapping that you have defined. This scheme works for the demo % ph
www.eeworm.com/read/188386/8544395

h bfcast.h

#import #import "BitVector.h" @interface BFCast: SwarmObject { double forecast; /*" this forecast of return"*/ double lforecast; /*" previous forecast"*/ d
www.eeworm.com/read/185911/8978597

cs dcb.cs

//========================================================================================== // // WJ.Serial.DCB // Copyright (c) 2006, WJ Communications, Inc. // // This class is mostly derived
www.eeworm.com/read/378417/9231842

cpp p213214.cpp

#include #include const int DefaultSize = 100; class Set { //用位向量来存储集合元素。这些集合元素只具有整数类型, 集合元素的取值范围在0到MaxSetSize-1之间。 public: Set ( int MaxSetSize = DefaultSize );