reducing the values of matrix

1 visualización (últimos 30 días)
Sharen H
Sharen H el 19 de Mzo. de 2013
I have an matrix called c=[123 345 78]
where cc= c mod 251
ie cc = [123 94 78]
how to convert these values and process in terms of polynomial division which
results in Quotient and remainder in Galois Field of (2^8)

Respuestas (1)

Jan
Jan el 19 de Mzo. de 2013
Perhaps you mean:
c = [123 345 78]
cc = mod(c, 2^8)
But this look such obvious, that I'm afraid you want something else. So please add more information by editing the question, not as answer or comment.

Categorías

Más información sobre Error Detection and Correction en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by