代码搜索:马尔可夫随机场
找到约 10,000 项符合「马尔可夫随机场」的源代码
代码结果 10,000
www.eeworm.com/read/159484/10646837
bmp 奥托立夫标志.bmp
www.eeworm.com/read/270580/11032464
swf 构造哈夫曼树.swf
www.eeworm.com/read/398790/7922421
txt 哈夫曼编码结果.txt
110
1001
101000
00000
10000
011
111011
101001
0001
0100
1110001000
11100011
10001
111010
0101
1011
101010
1110001001
0010
0011
1111
00001
1110000
111001
www.eeworm.com/read/398014/8009716
swf 树_哈夫曼算法.swf
www.eeworm.com/read/398014/8009724
swf 树_哈夫曼构造.swf
www.eeworm.com/read/397101/8068701
txt 切比雪夫点.txt
x3=-1:0.001:1;
y3=1./(1+25*x3.^2);
plot(x3,y3,'-k');
hold on;
n=[2 4 8 10];
for m=1:4
x=-1:0.01:1;
for k=1:201
L(k)=0;
for i=1:n(m)+1
x1(i)=cos((2*i-1)*pi/(2*(n(m)+1)));
end
for i=1:n
www.eeworm.com/read/295991/8129552
bmp 霍夫变换源图像.bmp
www.eeworm.com/read/333264/12692513
txt 哈夫曼编译码.txt
#include
#include
#include
#define MAX 25
typedef struct
{
char data;
int weight;
int parent;
int lchild;
int rchild;
} HTNode;
typedef struct
{
c
www.eeworm.com/read/318483/13477727
doc 哈夫曼编码文档.doc
www.eeworm.com/read/316695/13518574
cpp 复件 哈夫曼编码.cpp
#include
#include "math.h"
#include "queue.h"
using namespace std;
typedef struct { //存储节点定义
unsigned int weight;
unsigned i