Communications Toolbox    
biterr

Compute number of bit errors and bit error rate

Syntax

Description

For All Syntaxes

The biterr function compares unsigned binary representations of elements in x with those in y. The schematics below illustrate how the shapes of x and y determine which elements biterr compares.

Each element of x and y must be a nonnegative decimal integer; biterr converts each element into its natural unsigned binary representation. number is a scalar or vector that indicates the number of bits that differ. ratio is number divided by the total number of bits. The total number of bits, the size of number, and the elements that biterr compares are determined by the dimensions of x and y and by the optional parameters.

For Specific Syntaxes

[number,ratio] = biterr(x,y) compares the elements in x and y. If the largest among all elements of x and y has exactly k bits in its simplest binary representation, then the total number of bits is k times the number of entries in the smaller input. The sizes of x and y determine which elements are compared:

[number,ratio] = biterr(x,y,k) is the same as the first syntax, except that it considers each entry in x and y to have k bits. The total number of bits is k times the number of entries of the smaller of x and y. An error occurs if the binary representation of an element of x or y would require more than k digits.

[number,ratio] = biterr(x,y,k,flg) is similar to the previous syntaxes, except that flg can override the defaults that govern which elements biterr compares and how biterr computes the outputs. The possible values of flg are 'row-wise', 'column-wise', and 'overall'. The table below describes the differences that result from various combinations of inputs. As always, ratio is number divided by the total number of bits. If you do not provide k as an input argument, then the function defines it internally as the number of bits in the simplest binary representation of the largest among all elements of x and y.

Comparing a Two-Dimensional Matrix x with Another Input y 
Shape of y
flg
Type of Comparison
number
Total Number of Bits
Two-
dimensional matrix
'overall' (default)
Element-by-element
Total number of bit errors
k times number of entries of y
'row-wise'
mth row of x vs. mth row of y
Column vector whose entries count bit errors in each row
k times number of entries of y
'column-wise'
mth column of x vs. mth column of y
Row vector whose entries count bit errors in each column
k times number of entries of y
Row vector
'overall'
y vs. each row of x
Total number of bit errors
k times number of entries of x
'row-wise' (default)
y vs. each row of x
Column vector whose entries count bit errors in each row of x
k times size of y
Column vector
'overall'
y vs. each column of x
Total number of bit errors
k times number of entries of x
'column-wise' (default)
y vs. each column of x
Row vector whose entries count bit errors in each column of x
k times size of y

[number,ratio,individual] = biterr(...) returns a matrix individual whose dimensions are those of the larger of x and y. Each entry of individual corresponds to a comparison between a pair of elements of x and y, and specifies the number of bits by which the elements in the pair differ.

Examples

Example 1

The commands below compare the column vector [0; 0; 0] to each column of a random binary matrix. The output is the number, proportion, and locations of 1s in the matrix. In this case, individual is the same as the random matrix.

Example 2

The commands below illustrate the use of flg to override the default row-by-row comparison. Notice that number and ratio are scalars, while individual has the same dimensions as the larger of the first two arguments of biterr.

Example 3

The script below adds errors to 10% of the elements in a matrix. Each entry in the matrix is a two-bit number in decimal form. The script computes the bit error rate using biterr and the symbol error rate using symerr.

Sample output is below. Notice that ratio_sym is close to the target value of 0.10. Your results might vary because the example uses random numbers.

See Also
symerr


  bi2de compand