如何在Matlab中可视化Galois向量数组

时间:2013-11-10 11:58:48

标签: matlab vector fft galois-field

我有data(255x1 gf)。 它是FFT处理的信号数据。 我想要想象它。 我没有找到任何转换函数回到整数或双精度,或任何Galois Vector Array的绘图函数。

我发现你可以对提供数组的数据运行 fftshift ,可能是数据。 我跑

sami = fftshift(YDataVector)

我得到了

sami = GF(2^8) array. Primitive polynomial = D^8+D^4+D^3+D^2+1 (285 decimal)

Array elements = 

          25
         232
          36
         124
         220
         141
         161
         111
          56
         190
         209
         205
         ...

如何将数组元素转换为整数列表?我现在看到这些值为整数,但它们仍然在变量 sami 中作为 gf 格式。

如何在Matlab中绘制或可视化Galois Vector?

1 个答案:

答案 0 :(得分:2)

gf伽罗瓦域对象的场数组元素存储在属性x中:

>> x = sami.x;
>> whos x
  Name        Size            Bytes  Class     Attributes

  x         255x1              1020  uint32