代码搜索:Encodes
找到约 341 项符合「Encodes」的源代码
代码结果 341
www.eeworm.com/read/461382/7228235
m turboduobinarycrscencode.m
function codeword = TurboDuobinaryCRSCEncode( data, code_interleaver, pun_pattern )
% TurboDuobinaryCRSCEncode encodes a data sequence using a duobinary tailbiting
% turbo encoder.
%
% The call
www.eeworm.com/read/442900/7642588
m huffmanenco.m
function enco = huffmanEnco(sig,dict)
%
% Encodes the input signal, sig, based on the code dictionary, dict.
% The code dictionary is generated using the huffmanDict function.
%--------
www.eeworm.com/read/258131/11882820
m turboduobinarycrscencode.m
function codeword = TurboDuobinaryCRSCEncode( data, code_interleaver, pun_pattern )
% TurboDuobinaryCRSCEncode encodes a data sequence using a duobinary tailbiting
% turbo encoder.
%
% The call
www.eeworm.com/read/237137/4631606
m modulation.m
function [Symbols] = Modulation(TxBits, ModScheme)
% This function Gray encodes binary bits into QPSK symbols onto antenna.
%
% function [Symbols] = Modulation(TxBits, ModScheme)
%
% Input:
%
www.eeworm.com/read/185314/5238182
java phoneticencoder.java
package com.wrox.algorithms.wmatch;
/**
* Generic interface for encoding strings according to various Soundex algorithms.
*
*/
public interface PhoneticEncoder {
/**
* Encodes a string.
www.eeworm.com/read/271651/4225822
tex classsyncmanager.tex
\section{SyncManager Class Reference}
\label{classSyncManager}\index{SyncManager@{SyncManager}}
This is the core class which encodes the flow of messages between client and server throughout a session
www.eeworm.com/read/379352/6957859
m parseim.m
addpath('util');
%Load the trained model
load peopleModel;
%iterModel is a data structure that encodes the part models and part
%structures
% [www] is the weight for the edge filter when used in comb
www.eeworm.com/read/409828/11310866
java huffencoder.java
/************************
class HuffEncoder
encodes a Bitstream using Huffman coding
encoded bitstream format is:
first int - total codes in file
array of - frequency table for each type
www.eeworm.com/read/126093/14445919
pas base64.pas
unit Base64;
interface
uses
Classes;
function MimeEncodeString (const s: AnsiString): AnsiString;
{ MimeEncodeString takes a string, encodes it, and returns the result as a string.
To d
www.eeworm.com/read/305277/3778311
scala tcpoly_monads.scala
trait Monads {
/**
* class Monad m where
* (>>=) :: m a -> (a -> m b) -> m b
* return :: a -> m a
*
* MonadTC encodes the above Haskell type class,
* an instance of MonadTC c