Tagged Questions
The hamming tag has no wiki summary.
10
votes
2answers
431 views
Algorithm/approximation for combined independent set/hamming distance problem
Input: Graph G
Output: several independent sets, so that the membership of a node to all independent sets is unique. A node therefore has no connections to any node in its own set. Here is an example ...
7
votes
6answers
3k views
How does the Hamming code work?
When transmitting data, the Hamming code apparently allows you to recreate data that has been corrupted over the wire (an error correcting code).
How does this work and what are its limitations, if ...
6
votes
8answers
3k views
Shortest path to transform one word into another
For a Data Structures project, I must find the shortest path between two words (like "cat" and "dog), changing only one letter at a time. We are given a Scrabble word list to use in finding our path. ...
2
votes
3answers
187 views
Algorithm for disorder of strings regarding substring sequences and order (strings of same length, same chars, unique chars, no lexical meaning)
Let's say I have "peachz" as a string, and "eachzp" and "pahezc" as attempts used for comparison.
I'm looking for an algorithm that outputs the level of disorder of the array, regarding the relative ...
1
vote
0answers
53 views
How to retrieve frame number and frame size from wav file
I'm currently doing a thesis about chord recognition with EPCP with wav file as an input, but now I'm stuck at determining number of frames and frame size of a single wav file. I need those data as ...
1
vote
2answers
557 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
1answer
187 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
5answers
677 views
How to calculate the hamming distance of two binary sequences in PHP?
hamming('10101010','01010101')
The result of the above should be 8.
How to implement it?
0
votes
3answers
194 views
Hamming weight/population count in T-SQL
I'm looking for a fast way to calculate the hamming weight/population count/"the number of 1 bits" of a BINARY(1024) field. MySQL has a BIT_COUNT function that does something like that. I couldn't ...
0
votes
1answer
77 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
2answers
315 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
1k views
Calculate Hamming distance between two strings of binary digits in Matlab
I have two equal length strings containing 1's and 0's. Each string is 128-bits long, and I want to calculate the Hamming distance between them. What's the best way I can go about doing this?
e.g. ...
0
votes
2answers
198 views
console application using Hamming Algorithm for code bug finder
I need a console apllication for byte correction, using HAMMING ALGORITHM.Can anybody help me on this issue?
input word would be for example: 11100100
0
votes
1answer
373 views
Hamming distance and CRC
How to find the Hamming distance of a code generated by a certain CRC?
Assume that I have a generating polynomial of order, say, 4 and 11 bits of data.
How to compute the HD basing only on these ...