编码 Resources

Showing items tagged with "编码"

A custom MATLAB simulation program for BCH codes featuring encoding and decoding main programs with corresponding execution results and algorithm explanations.

MATLAB 216 views Tagged

This provides a complete MATLAB-based OFDM development system covering the entire communication chain - from encoding and channel modeling to demodulation, synchronization establishment, and Viterbi decoding. It serves as excellent learning material with comprehensive technical coverage.

MATLAB 219 views Tagged

The cubic spline algorithm demonstrates excellent performance in both image encoding and decoding operations, although its computational intensity reduces overall efficiency. We propose a fast algorithm that maintains quality while optimizing processing speed through improved interpolation calculations and boundary condition handling.

MATLAB 221 views Tagged

A MATLAB-based JPEG compression program that processes grayscale BMP images and encodes them into binary (0101 format) compressed data. The implementation follows standard JPEG encoding pipeline: color space conversion from RGB to YCbCr, chroma subsampling exploiting human visual system's lower sensitivity to color variations, block-based Discrete Cosine Transform (DCT), quantization preserving low-frequency components, and entropy coding using Run-Length Encoding and Huffman coding for high compression ratios.

MATLAB 280 views Tagged

MATLAB simulation implementation analyzing the throughput vs. bit error rate relationship for an improved Type-II selective repeat HARQ mechanism. The simulation features simplified encoding/decoding processes: simulating erroneous bits probabilistically based on BER, with receiver-side error detection based on correctable error thresholds. Each transmitted codeword undergoes error checking using bit error count information - error-free codewords are accepted while erroneous ones trigger retransmission. The algorithm employs an alternating transmission scheme (via alternate value) between information codewords and parity codewords. When parity codewords arrive, the combined codeword (original + parity) undergoes error correction capability verification - successful correction leads to acceptance, otherwise retransmission is requested.

MATLAB 255 views Tagged

Implementation of PCM technology through three processes: sampling, quantization, and encoding. Sampling: Low-pass continuous signal sampling demonstrated using x=sin(200*t), m=x./(200*t), m=m.*m to illustrate sampling theorem with time/frequency domain plots; Band-pass continuous signal sampling using x=sin(20*t), m=x./t to demonstrate band-pass sampling theorem with corresponding plots. Quantization: Uniform quantization implemented for sinusoidal signals with 64 quantization levels; Non-uniform quantization applied to sinusoidal signals input to A-law PCM encoder, showing sampling sequence and output code sequence. Encoding: Implementation of A-law 13-segment approximation and international standard PCM logarithmic A-law quantization coding.

MATLAB 311 views Tagged