MATLAB: Modulo-2 addition

ldpc codes

Hello.. I would like to know whether there is any in-built function for performing modulo-2 addition..

Best Answer

Hi,
you can use the mod command for that. Assume you like to add a and b and than do the modulo 2:
mod(a+b,2)
Related Question