The error-detection tag has no wiki summary.
4
votes
1answer
152 views
Eliminating sequences in a message
I have an odd communications channel, and I need to detect errors as well as eliminate certain sequences in the channel.
Each message is 12 bits long, split into 3 nibbles (of 4 bits each). I need to ...
0
votes
0answers
51 views
error-detection for file sent across a network - can only link to pthread and math library in c
I need to transfer a file from one host to another but the data can be corrupted in between so I need to have some error detection algorithm . So i thought I could send the md5 sum along but my ...
0
votes
0answers
23 views
JSON Error Highlighting in Aptana / Eclipse?
I'm using Aptana to write JSON, and it does syntax highlighting really well.
It doesn't do error highlighting, the way it would with javascript.
So at the moment, if I refresh the page handling the ...
0
votes
1answer
36 views
Detecting failure of JAR command in Bash
I am executing this simple jar command in bash:
jar cvfm control.jar Manifest <class list>
How can I automate the detection of a failure in the execution of this command?
By failure i mean ...
1
vote
2answers
303 views
Checksumming: CRC or hash?
Performance and security considerations aside, and assuming a hash function with a perfect avalanche effect, which should I use for checksumming blocks of data: CRC32 or hash truncated to N bytes? ...
2
votes
1answer
682 views
Even/odd parity in hamming code
If a message, say two bytes, have been received, and it's known to have been encoded using Hamming code, but the parity used for encoding (even / odd) is not known, would the application of both ...
0
votes
0answers
76 views
Network Error Detection: Why MAC is poor on Error Detection compare to CRC [closed]
MAC (Message Authentication Code) is used in network to detect adversaries try to modify data. Given message M and security code s, it will generate m = MAC(M,s). So, when receiver receives M, he can ...
2
votes
1answer
146 views
Error correcting code
For a payment system that allows bank/wire transfers, I need to reliably associate payments with the corresponding user account that they are intended for. For this, the user should include a ...
0
votes
1answer
114 views
Error correction code for lost bit
If we have to receive a data from sender as a chunk of bits (say 8 bits).
But, the transferring is unreliable which result in bit-lost. (Not bit-flip)
That mean, any bit in the chunk can be absent ...
0
votes
1answer
181 views
Parity error detection, 4-bit example of how a particular scheme doesn't work
Hey so I'm doing a bit of revising for a midterm next week, and I have this question that I'm not being able to find the material or understand how to answer.
I can see how a single error, double ...
1
vote
2answers
711 views
Finding hamming distance of code
A question asks: find the hamming distance of the following code:
11111
10101
01010
11100
00011
11001
The answer is 2. How does this work? I thought hamming distance is only between two ...
0
votes
1answer
129 views
Multiple Small CRC checks or a single large CRC check?
Suppose I have L = 1024 bits to protect with CRC check using 16 extra bits. I have the choice of using either 16 CRC-1 (single parity check) or one CRC-16 check. Which option is better in terms of ...
0
votes
2answers
369 views
Recommended CRC16 polynomials for data logging application
I'm writing a data logging application (running on a microcontroller) which will write data to ordinary, embedded NOR-type serial flash memory (in this case - an AT25DF161.)
Each packet of data (240 ...
1
vote
1answer
211 views
Matching a CRC code by appending to message
I have a binary string (shown in hex below) and am using CRC-16-CCITT. I want all of my CRCs to come out to a set value, 0x1D0F. I know it is possible to make the CRCs match this value by appending ...
2
votes
2answers
111 views
Do we add the parity bit to the front or the back of bit set
Do we add the parity bit to the front or the back of the bit set?
A bit that acts as a check on a set of binary values, calculated in such a way that the number of 1s in the set plus the parity bit ...
0
votes
2answers
3k views
Hamming Code Error Detection
Ok i have this code as give below for error checking by using hamming codes.
i went through the algorithm on wikipedia and also understood its working in the thread How does the Hamming code work?
...
1
vote
1answer
706 views
Block Check Character (BCC) error burst detection
Disclaimer: Not homework!
Problem
I've been reading up on BCC error detection for my networks course and have got a bit confused over one particular explanation in some of the slides.
Given ...
-1
votes
1answer
392 views
Error detecting code and Hamming distance
The Hamming distance of v and w equals 2, but without parity
bit it would be just 1. Why is this the case?
0
votes
1answer
284 views
Error trapping for a missing data source in a Spring MVC / Spring JDBC web app
I have written a web app that uses Spring MVC libraries and Spring JDBC to connect to an Oracle DB. (I don't use any ORM type libraries as I create stored procedures on Oracle that do my stuff and I'm ...
0
votes
2answers
605 views
CRC-5 in MATLAB
How to encode/decode CRC-5-EPC (x^5+x^3+1) in MATLAB?
I've tried:
code = encode(msg,n,k,'cyclic/binary', [1,0,1,0,0,1]);
But it returns:
The generator polynomial P cannot produce a cyclic code ...
1
vote
0answers
49 views
Framework for detecting blocked Javascript (and other) resources
I use NoScript to selectively allow what Javascript to run. Unfortunately most sites pull in Javascript from all kinds of places, so this is not an on/off proposition, but can result in various ...
3
votes
1answer
818 views
Why does BCL GZipStream (with StreamReader) not reliably detect Data Errors with CRC32?
The the other day I ran into the question GZipStream doesn't detect corrupt data (even CRC32 passes)? (Of which this might very well be a "duplicate", I have mixed feelings on the subject. I was ...
0
votes
1answer
997 views
Hamming code in Matlab
I would like to build Hamming(15, 11) code with parity bit (SECDED) to correct 1 bit errors and detect 2-bit errors.
Are there any Matlab function that implement encoding and decoding of such code?
0
votes
1answer
76 views
What kind of Error Detection Analysis does the Netbeans IDE have?
I'm doing some research on Netbeans IDE. I mean, why use ActionPMD and FindBugs plug-ins when Netbeans already has a built in error detection system? Is the difference really that significant?
0
votes
2answers
162 views
How can I add some detection or correction code in a 48bits message?
I'm developing a OCR tool reeds a set of symbols which represent 2 bits each.
For example:
{ ---> 00
} ----> 01
Always I have a 48 bits code so I have 24 symbols.
I need to implement a detector or ...
1
vote
1answer
40 views
Code that detects its own bugs?
Consider the following code snippet:
int index = FindClosestIndex(frame);
if (_data[index].Frame == frame)
return _data[index];
else
return interpolateData(frame, _data[index - 1], ...
-2
votes
1answer
132 views
Check sum calculation [closed]
I am new to know about check sum. So kindly help me.
I have these four binary values and i need to calculate the check sum for these numbers.
They are
0111011101100
1011011000110
0011011011110
...
4
votes
2answers
908 views
Error detection and error correction algorithm
Suppose we have a chunk of data that came from data transfer medium with the following properties:
Total chunk size is 8 bytes.
The data transfer is unreliable, so errors in a number of bits are ...
0
votes
3answers
176 views
Error detection code for 33 bytes, detecting bit flipped in first 32 bytes
Could you please suggest an error detection scheme for detecting
one possible bit flip in the first 32 bytes of a 33-byte message using
no more than 8 bits of additional data?
Could Pearson hashing ...
0
votes
1answer
148 views
CRC checksum decimal
I was wondering if anyone could give me a basic example, or a link to a resource showing how CRC can be used with decimal numbers, without binary.
Thanks
1
vote
2answers
204 views
error correcting code over a 4 element alphabet
I need to develop an error correcting code.
My alphabet is {0,1,2,3} (4 elements)
Codeword size n will be 8 or 12
expected error correction capability = 1 digit
expected error detection capability = ...
1
vote
4answers
161 views
Does SQL Server have any built-in error checking mechanisms with regards to receiving an sql statement?
This question is a follow-up/in relation to my previous question here: http://stackoverflow.com/questions/3518498/sql-server-is-there-a-need-to-verify-a-data-modification
I did some googling, and the ...
2
votes
4answers
202 views
binary file formats: need for error correction?
I need to serialize some data in a binary format for efficiency (datalog where 10-100MB files are typical), and I'm working out the formatting details. I'm wondering if realistically I need to worry ...
153
votes
9answers
5k views
Cosmic Rays: what is the probability they will affect a program?
Once again I was in a design review, and encountered the claim that the probability of a particular scenario was "less than the risk of cosmic rays" affecting the program, and it occurred to me that I ...
4
votes
2answers
677 views
How can my visual studio addin detect compiler errors before building in the same manner as “Remove and Sort Usings”?
I'm making a refactoring tool that automates a few of the more trivial code styling things dealing with StyleCop. One of the things I'd like my add-in to be able to do (as an optional feature the ...
1
vote
3answers
3k views
What is CRC? And how does it help in error detection?
What is CRC? And how does it help in error detection?
2
votes
2answers
690 views
Repairing Code Number with missing digits
I have recently been reading about Error Correction for a job interview and have written a number of programs that use n-ary BCH (Bose, Chaudhuri, Hocquenghem) cyclic codes and have now written a ...
0
votes
2answers
116 views
Automatic compiler detection of the addition of the same object instance to a container in a loop
This is a dumb mistake:
List<Foo> fooList = new List<Foo>();
Foo f = new Foo();
while (something.Read()) {
f.Fill(something.GetRecord());
fooList.Add(f);
}
Of course, I should ...
4
votes
4answers
2k views
Error Detection Effiency (CRC, Checksum, etc)
I have a hypothetical situation of sending data units, each of a thousand bytes. Failure rate is rare but when a error does occur it is less likely to be a single bit error and more likely to be an ...
0
votes
2answers
2k views
Any known good tutorial about Cyclic Redundancy Check?
I would like to learn about CRC and looking around for any good theory explanation.
I would be very thankful if anyone could provide any goo resource about the topic.
Thanks!
0
votes
6answers
411 views
comparing statically typed code with dynamically typed code - costs and benefits
Whatever its merits, Adobe's Actionscript 3 presents what may be a unique opportunity to explore the consequences of typed versus untyped languages, because it is pretty much a strict superset of ...
9
votes
9answers
777 views
How to detect synchronization violations with Java
I'm wondering what good ways there would be make assertions about synchronization or something so that I could detect synchronization violations (while testing).
That would be used for example for ...
5
votes
12answers
3k views
Is there a way to determine whether an e-mail reaches its destination?
I have a PHP script that sends out critical e-mails that needs to reach its destination. I know how to check whether the e-mail sent successfully, the only issue is knowing whether it actually got to ...


