代码搜索结果

找到约 10,000 项符合 4 的代码

ch4_4.htm

范例问题:语音讯号分析

algo4-4.c

/* algo4-4.c 生成书名关键词索引文件bookidx.txt,算法4.9~4.14 */ /* 为运行algo4-5.c做准备 */ #include"c1.h" typedef int ElemType; #include"c2-5.h" #include"bo2-6.c" #include"c4-2.h" #include"bo4-2.c" #d

example4_4.m

%写一个函数,它计算目标函数值、目标函数的梯度和稀疏三阶海色矩阵。 function [f,g,H] = brownfgH(x) % 计算目标函数。 n=length(x); y=zeros(n,1); i=1:(n-1); y(i)=(x(i).^2).^(x(i+1).^2+1)+(x(i+1).^2).^(x(i).^2+1); f=sum(y); % 计算函数梯度。

examp4_4.m

C=[1, 2, 3, 4, 5]; V=vander(C)

fig4_4.m

% Use this program to reproduce Fig 4.4 of text close all clear all eps = 0.0001; taup = 2.; fd = -10./taup:.05:10./taup; uncer = abs( sinc(taup .* fd)); ambg = uncer.^2; plot(fd, ambg,'k') x

5-4-4.c

/*中国系统分析员顾问团,http://www.csai.cn*/ /*程序员下午考试指南书籍源码*/ #include #include typedef struct node{ int data; /*结点的键值*/ struct node *left; struct node *right; }BTREE; BTREE *S

4-4-1.c

/*中国系统分析员顾问团,http://www.csai.cn*/ /*程序员下午考试指南书籍源码*/ #include "stdio.h" #include "malloc.h" typedef struct poly { int coef; int index; struct poly *next; } POLYNOME; POLYNOME *blis

4-4-12.c

/*中国系统分析员顾问团,http://www.csai.cn*/ /*程序员下午考试指南书籍源码*/ #include #include typedef struct node{ int key; struct node *next; }*LinkedList; int movetoend(LinkedList La, int i

4-4-10.c

/*中国系统分析员顾问团,http://www.csai.cn*/ /*程序员下午考试指南书籍源码*/ #include #include typedef struct node{ int value; struct node *next; }NODE, *PNODE; int push(PNODE *top, int e){