Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
8answers
1k views

How to check if permutations have equal parity?

I am looking for a way to check if 2 permutations (represented by lists) are of the same parity. Note that I am not interested if they are even or odd parity, just the equality. I am new to Python ...
4
votes
5answers
360 views

Calculate the parity of a byte in Ruby

What's the best way to calculate if a byte has odd or even parity in Ruby? I've got a version working: result = "AB".to_i(16).to_s(2).count('1').odd? => true Converting a number to a string and ...
3
votes
3answers
380 views

Bit parity code for odd number of bits

I am trying to find the parity of a bitstring so that it returns 1 if x has an odd # of 0's. I can only use basic bitwise operations and what I have so far passes most of the tests, but I'm wondering ...
2
votes
1answer
160 views

Counting Set Bits. 16-bit assembly parity program

I am trying to write a subprocedure that will count the number of buts set in a 16bit number, then send that number (bits set) back to the main procedure in AX. The main should display display the ...
2
votes
1answer
909 views

C# serial rs232 parity error

I'm trying to get a simple serial reader going in C# to read info from an rs232. I'm using VS2008. I can receive data fine with hyperterminal and python but I keep getting parity errors every time I ...
2
votes
3answers
657 views

how to convert a character to 7 bit even parity in php

I want to convert a Character to a 7 bit even parity. Can you please suggest me, how to implement this?
1
vote
3answers
162 views

C# Parity Bits from a Binary Number [closed]

Possible Duplicate: How to add even parity bit on 7-bit binary number This is my new code which converts a 7-bit binary number to an 8-bit with even parity. However it does not work. When I ...
1
vote
4answers
412 views

What is the fastest way for bit operations to calculate a parity?

My solution: (for every bit of the input block, there is such a line) *parity ^= (((x[0] >> 30) & 0x00000001) * 0xc3e0d69f); All types are uint32. This line takes the second bit of the ...
1
vote
2answers
585 views

Horizontal and Vertical Parity check codes

I was reading about horizontal and vertical parity check codes. One of the properties of these codes is that the final parity check (the lower right bit) is equal to modulo 2 sum of horizontal parity ...
1
vote
2answers
106 views

Black-box counting to 19 with only 2 bits, and only toggleable?

Some student asked this on another site, but got no answers. I had a few stabs at it, but found it pretty tricky. Doing it with just the switches would require a 9:1 compression ratio, so I guess ...
1
vote
1answer
192 views

Number of parity bit required

I was reading about error detection and stumbled upon a statement which I didn't quite understand. The statement said "for a k bit string we need lg k parity bits to detect 2 bit errors".where lg is ...
1
vote
1answer
505 views

determine parity of a bit representation of a number in MIPS

Is there some instruction in MIPS that will determine the parity of a certain bit representation? I know to determine whether a "number" has an even parity or an odd parity is to XOR the individual ...
0
votes
0answers
20 views

Is there a reverse-incremental backup solution with built-in redundancy (e.g. par2)?

I'm setting a home server primarily for backup use. I have about 90GB of personal data that must be backed up in the most reliable manner, while still preserving disk space. I want to have full file ...
0
votes
2answers
86 views

How to add even parity bit on 7-bit binary number

I am continuing from my previous question. I am making a c# program where the user enters a 7-bit binary number and the computer prints out the number with an even parity bit to the right of the ...
0
votes
0answers
72 views

setting parity with controlTransfer method

Anybody knows how to set the parity with the controlTransfer in Android? I can't find the explanation of this method's parameters anywhere - just some generic info in the ref. One example I found ...
0
votes
1answer
81 views

Error detection techniques accuracy

I can't find information on accuracy of different error detection techniques. Say, if I want to be able to correct 1, 2 and 3 bit failures in 32 bit word than I can use modified Hamming code with 7 ...
0
votes
3answers
122 views

PARITY_NONE a keyword in C++ Windows?

I am writing a serial library using boost and I have an enum: enum parity_t { PARITY_NONE, PARITY_ODD, PARITY_EVEN }; I get errors like: Error 1 error C2059: syntax error : '(' I couldn't ...
0
votes
2answers
341 views

Computing Hamming code

I'm a bit confused about computing Hamming code. In Wikipedia article it is written: Parity bit 1 covers all bit positions which have the least significant bit set: bit 1 (the parity bit ...
0
votes
2answers
166 views

RAID 5 parity placement policy?

What are the performance differences in various parity placement policies in RAID 5?
0
votes
1answer
131 views

are there any advantages for CRC when compared with 2 dimentional parity?

are there any advantage for CRC when compared with 2 dimensional parity?
-1
votes
1answer
104 views

How to add an even parity bit on 7-bit binary number c# [closed]

Possible Duplicate: How to add even parity bit on 7-bit binary number OK. I'm sorry I can't input code as for some reason c# isn't working for me. So, is there any way anyone could provide ...
-1
votes
2answers
90 views

My Program for parity numbers [closed]

Possible Duplicate: How to add even parity bit on 7-bit binary number There is a problem with my program to ask for a 7-bit binary number and print an 8-bit one with a parity bit. Here is ...
-1
votes
1answer
50 views

Repairing damaged bits using parity data

Here is a brainteaser! Let us say we have 64 bytes, each byte is eight bits plus one parity bit Let us say there is a further LRC check byte (formed by bit wise XOR ing all 64 bytes) So we can ...
-7
votes
2answers
86 views

Why is parity wrong?

My code suggests the fact that 0101010 as a binary number with a parity bit would equal 146. Can you please explain to me why this is happening? Could you please offer me some code? ...