├── .gitattributes ├── .gitignore ├── README.md └── Sourcecode ├── createDensePolarH.m ├── createPaperPlots.m ├── export_pgfplots.m ├── polar2bipartite.m ├── polarTransform.m ├── pruneGraph.m ├── runSim.m └── selectGoodChannels.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/README.md -------------------------------------------------------------------------------- /Sourcecode/createDensePolarH.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/Sourcecode/createDensePolarH.m -------------------------------------------------------------------------------- /Sourcecode/createPaperPlots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/Sourcecode/createPaperPlots.m -------------------------------------------------------------------------------- /Sourcecode/export_pgfplots.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/Sourcecode/export_pgfplots.m -------------------------------------------------------------------------------- /Sourcecode/polar2bipartite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/Sourcecode/polar2bipartite.m -------------------------------------------------------------------------------- /Sourcecode/polarTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/Sourcecode/polarTransform.m -------------------------------------------------------------------------------- /Sourcecode/pruneGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/Sourcecode/pruneGraph.m -------------------------------------------------------------------------------- /Sourcecode/runSim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/Sourcecode/runSim.m -------------------------------------------------------------------------------- /Sourcecode/selectGoodChannels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianCa/LDPC-like-Decoding-of-Polar-Codes/HEAD/Sourcecode/selectGoodChannels.m --------------------------------------------------------------------------------