Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to multiply one elements with rest of the elements in Galois field

1 vue (au cours des 30 derniers jours)
lilly lord
lilly lord le 9 Sep 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hi, I am working in Galois field, The generated field is GF( 2^4)
p=2;
n=4;
poly=[1 1 0 0 1];
field1=gftuple([-1:p^n-2]',poly,p);% it generates 16 elements
s2=[];
% i want to select one element of the field and then multiply all the elements of the field one by one with that element
for i=1:16
a_1(i)=gfmul(5,i,field1); % here I am getting error
s2=[a_1];
end
First Question is how to multiply selected field element with the rest of the elements
My second question is when I select any random element of Galois field by using
field1(4) it gives incorrect answer

Réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by