m*e
2 楼
有谁知道info tech spectrum
这家公司怎么样呢?
谢谢
这家公司怎么样呢?
谢谢
J*n
3 楼
里面说要把compatibility mode关了。
这个怎么弄阿?有谁给个比较详细的说明阿?
谢谢。
这个怎么弄阿?有谁给个比较详细的说明阿?
谢谢。
L*a
4 楼
从来没有过这面的经验,突然被拉过去做LDPC码的编码和译码。
先问些白痴级的问题。对于二进制, 矢量相乘,矩阵相乘,
矩阵求逆是怎么算的? 都是二进制模二加吗?
从spec上看,parity check matrix 已经给出。
H = ( A B T )
( C D E )
这就是说,要用LDPC的RU算法进行编码。RU算法的公式非常简单,
但是根本不知道怎么实现。
哪位高人给个代码研究研究?
先问些白痴级的问题。对于二进制, 矢量相乘,矩阵相乘,
矩阵求逆是怎么算的? 都是二进制模二加吗?
从spec上看,parity check matrix 已经给出。
H = ( A B T )
( C D E )
这就是说,要用LDPC的RU算法进行编码。RU算法的公式非常简单,
但是根本不知道怎么实现。
哪位高人给个代码研究研究?
k*d
6 楼
对于二进制, 矢量相乘,矩阵相乘,
矩阵求逆是怎么算的? 都是二进制模二加吗?
加就是XOR,乘就是AND
RU算法的公式非常简单,
但是根本不知道怎么实现。
把公式贴出来看看?
矩阵求逆是怎么算的? 都是二进制模二加吗?
加就是XOR,乘就是AND
RU算法的公式非常简单,
但是根本不知道怎么实现。
把公式贴出来看看?
L*a
8 楼
多谢!
The encoder RU-algorithm is attached, and A, B, T, C, D, and E are
sparse
matrices.
My current question is:
How to derive the inverse matrix inv(T) ?
Reference:
Thomas J. Richardson and Rüdiger L. Urbanke, "Efficient Encoding of Low-
Density Parity-Check Codes," IEEE Transactions in Information Theory,
47(2), February 2001
【在 k*******d 的大作中提到】
: 对于二进制, 矢量相乘,矩阵相乘,
: 矩阵求逆是怎么算的? 都是二进制模二加吗?
: 加就是XOR,乘就是AND
: RU算法的公式非常简单,
: 但是根本不知道怎么实现。
: 把公式贴出来看看?
p*n
10 楼
在GF(2)上的矩阵求逆,应该也可以用高斯消元法吧
【在 L***a 的大作中提到】
:
: 多谢!
: The encoder RU-algorithm is attached, and A, B, T, C, D, and E are
: sparse
: matrices.
: My current question is:
: How to derive the inverse matrix inv(T) ?
: Reference:
: Thomas J. Richardson and Rüdiger L. Urbanke, "Efficient Encoding of Low-
: Density Parity-Check Codes," IEEE Transactions in Information Theory,
【在 L***a 的大作中提到】
:
: 多谢!
: The encoder RU-algorithm is attached, and A, B, T, C, D, and E are
: sparse
: matrices.
: My current question is:
: How to derive the inverse matrix inv(T) ?
: Reference:
: Thomas J. Richardson and Rüdiger L. Urbanke, "Efficient Encoding of Low-
: Density Parity-Check Codes," IEEE Transactions in Information Theory,
y*e
11 楼
威海是中韩海底隧道的选址,将来隧道建好了房价肯定石破天惊啊
L*a
12 楼
各位大牛, 敬仰之情如滔滔江水。
Paper 上也说用高斯消元。那个T 矩阵是一个好几百阶的稀疏矩阵,我一看就吓晕了。
先到网上搜索一下,有没有GF(2)的求逆C/C++代码。
如果各位大牛有,能不能给一个先?
苦啊! 本来跟EE没什么关系,可眼瞅着要被逼成 编码/译码 的砖家了。
Paper 上也说用高斯消元。那个T 矩阵是一个好几百阶的稀疏矩阵,我一看就吓晕了。
先到网上搜索一下,有没有GF(2)的求逆C/C++代码。
如果各位大牛有,能不能给一个先?
苦啊! 本来跟EE没什么关系,可眼瞅着要被逼成 编码/译码 的砖家了。
f*h
14 楼
LDPC 编解码网上有源代码下载
L*a
16 楼
Google了半天,下载了若干C和MATLAB的,可没有RU编码程序。
实在不行,只好赶鸭子上架了。
实在不行,只好赶鸭子上架了。
L*a
19 楼
我不做硬件,只是需要用C/C++实现。
其实真正要的是译码部分,但为了测试,编码部分也得实现。
手册上给的是RU简化过的下三角H振,校验位是用RU公式计算的。所以,我觉得用RU算
法比较方便。
T矩阵需要显式求逆吗?
其实真正要的是译码部分,但为了测试,编码部分也得实现。
手册上给的是RU简化过的下三角H振,校验位是用RU公式计算的。所以,我觉得用RU算
法比较方便。
T矩阵需要显式求逆吗?
a*n
20 楼
If you only care about the decoder, you may assume all-zero input to the
encoder, which generates all-zero codeword as well. I remember one of my
labmate once memtioned there is a paper claiming that in terms of evaluation
of decoding performance, all-zero input makes no difference with randomized
input sequence. Although I doubt the argument, a lot of people did this for
acdamic research.
encoder, which generates all-zero codeword as well. I remember one of my
labmate once memtioned there is a paper claiming that in terms of evaluation
of decoding performance, all-zero input makes no difference with randomized
input sequence. Although I doubt the argument, a lot of people did this for
acdamic research.
k*d
21 楼
Depends on your channel.
一般AWGN BPSK可以这么做,如果channel depends on input,那就不行了。
evaluation
randomized
for
【在 a******n 的大作中提到】
: If you only care about the decoder, you may assume all-zero input to the
: encoder, which generates all-zero codeword as well. I remember one of my
: labmate once memtioned there is a paper claiming that in terms of evaluation
: of decoding performance, all-zero input makes no difference with randomized
: input sequence. Although I doubt the argument, a lot of people did this for
: acdamic research.
一般AWGN BPSK可以这么做,如果channel depends on input,那就不行了。
evaluation
randomized
for
【在 a******n 的大作中提到】
: If you only care about the decoder, you may assume all-zero input to the
: encoder, which generates all-zero codeword as well. I remember one of my
: labmate once memtioned there is a paper claiming that in terms of evaluation
: of decoding performance, all-zero input makes no difference with randomized
: input sequence. Although I doubt the argument, a lot of people did this for
: acdamic research.
L*a
22 楼
俺需要输入数据和输出数据的完全匹配,所以不能假设信息比特为零。 当然了,这也
是一个case。
是一个case。
kn
23 楼
一般矩阵求逆可以先做QR分解,T=QR, Q是酉矩阵,R是三角阵
然后 QR*inv(T)=I, R*inv(T)=conv(Q),然后back substitute解出inv(T)
不过这里T是准下三角矩阵。不知道有没有更快的办法求逆。
【在 L***a 的大作中提到】
: 从来没有过这面的经验,突然被拉过去做LDPC码的编码和译码。
: 先问些白痴级的问题。对于二进制, 矢量相乘,矩阵相乘,
: 矩阵求逆是怎么算的? 都是二进制模二加吗?
: 从spec上看,parity check matrix 已经给出。
: H = ( A B T )
: ( C D E )
:
: 这就是说,要用LDPC的RU算法进行编码。RU算法的公式非常简单,
: 但是根本不知道怎么实现。
: 哪位高人给个代码研究研究?
然后 QR*inv(T)=I, R*inv(T)=conv(Q),然后back substitute解出inv(T)
不过这里T是准下三角矩阵。不知道有没有更快的办法求逆。
【在 L***a 的大作中提到】
: 从来没有过这面的经验,突然被拉过去做LDPC码的编码和译码。
: 先问些白痴级的问题。对于二进制, 矢量相乘,矩阵相乘,
: 矩阵求逆是怎么算的? 都是二进制模二加吗?
: 从spec上看,parity check matrix 已经给出。
: H = ( A B T )
: ( C D E )
:
: 这就是说,要用LDPC的RU算法进行编码。RU算法的公式非常简单,
: 但是根本不知道怎么实现。
: 哪位高人给个代码研究研究?
l*o
24 楼
二进制BPSK用全零码和伪随机序列码用bp译码结果一样 所以很多译码性能仿真时用全
零码
但多进制ldpc码的话就不能这么做了
evaluation
randomized
for
【在 a******n 的大作中提到】
: If you only care about the decoder, you may assume all-zero input to the
: encoder, which generates all-zero codeword as well. I remember one of my
: labmate once memtioned there is a paper claiming that in terms of evaluation
: of decoding performance, all-zero input makes no difference with randomized
: input sequence. Although I doubt the argument, a lot of people did this for
: acdamic research.
零码
但多进制ldpc码的话就不能这么做了
evaluation
randomized
for
【在 a******n 的大作中提到】
: If you only care about the decoder, you may assume all-zero input to the
: encoder, which generates all-zero codeword as well. I remember one of my
: labmate once memtioned there is a paper claiming that in terms of evaluation
: of decoding performance, all-zero input makes no difference with randomized
: input sequence. Although I doubt the argument, a lot of people did this for
: acdamic research.
相关阅读
感觉有些人把实际的电容跟理想电容模型混了吧MEMS / semiconductor工作机会St Micro 提供BSDL file吗侏儒婊子邢慧强半婊子中国海洋大学半婊子保研黑幕 2003年大连理工大学电子系考研失利的青岛二中学生侏儒婊子邢慧强被中国海洋大学电子系破格录取为中国海洋大学电子系的硕士,如果给半婊子中国海洋大学加上一个中国科学技术大学无线光通信与网络研究中心 招聘高工请问图中红圈中的元件是干什么用的?立錡科技的产品怎么样问个信号变换问题Synopsys的传统EDA组Hiring: 2 EE positionspower electronics opening availableApple硬件今年准备扩招100多人 (转载)有在Marvell的前辈么?第一年小硕咋找实习深圳大学机电控制学院招聘全职教师EE公司 要coding 背景的职位该怎么准备?RFMD and TriQuint to Combine, Creating a New Leader in RF Solutions第二篇文章帮忙【面试问题求助】NAND哪个input更快?ASIC数字电路求内推!小弟必知恩图报!谢谢!