代码搜索:Decoding
找到约 6,356 项符合「Decoding」的源代码
代码结果 6,356
www.eeworm.com/read/379392/2674295
js en-decoding.js
function urlDecode(str){
str=str.replace(new RegExp('\\+','g'),' ');
return unescape(str);
}
function urlEncode(str){
str=escape(str);
str=str.replace(new RegExp('\\+','g'),'%2B');
www.eeworm.com/read/474600/6813467
m hmm_decoding.m
www.eeworm.com/read/359187/6841944
m hmm_decoding.m
www.eeworm.com/read/171369/9759326
m sphere_decoding.m
function [transmit_detected,erasure]=sphere_decoding(R,H,N,ModScheme)
% R: received signal vector(column vector)
% H: MIMO channel matrix with nR*nT
% N: signal number to be detected, i.e. Tx Anten
www.eeworm.com/read/367267/9764168
m conv_decoding.m
function output_bit = conv_decoding(input_bit,reset)
% convolutional decoding for IEEE802.11a
% Input: input_bit is a 1-by-4 matrix represents 4 bits input.
% Output: output_bit is a 1-by-2 ma
www.eeworm.com/read/415311/11077107
m hmm_decoding.m
www.eeworm.com/read/287073/8721786
html struct_decoding_result.html
Crypto++: DecodingResult Struct Reference
www.eeworm.com/read/176193/9512726
m map_decoding_tail.m
function [LLR_app_d]=map_decoding_tail(state_num,info_num,LLR_apr_c)
% MAP decoding for tail biting convolutional code
Infty = 1e10;
% load trellis
load next_out.mat;
load next_state.mat;
www.eeworm.com/read/167921/9947575
txt chase2decoding.txt
/* 程序实现了[7,4,3]汉明码硬判决译码器及CHS2算法
* 程序取4*1,000,000个仿真点时可取得很好的效果,程序大概需运行3min
* 程序运行结果将产生三个txt文件:
* uncode.txt: 无编码的性能;
* hard_dec.txt: [7,4,3]汉明码/硬判决的性能;
* chase2.txt: [7,4,
www.eeworm.com/read/424340/10461656
txt huffman encoding and decoding.txt
#include
#include
#include
#include
#include
#include
#include
#i