代码搜索结果
找到约 10,000 项符合
6 的代码
exa6_6.m
% exa060202_cohere.m, for example 6.2.2
% to test cohere.m ;
clear all;
% 构造低通滤波系数b1和高通滤波序列b2
Fs=1;N=1024;
A=[1 1 0 0];
f=[0 .6 .7 1];
weigh=[1 10];
b1=remez(42,f,A,weigh);
A=[0 0 1
ex6_6.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
ex6_6.dsp
# Microsoft Developer Studio Project File - Name="Ex6_6" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Con
ex6_6.cpp
//【例6.6】升序直接插入排序算法,作为【例6.4】Orderedlist类的
//成员函数InsertSort(),T为关键字类型。
#include
#include
using namespace std;
template class Orderedlist{
int maxs
c6-6.cpp
#include
using namespace std;
int main()
{void select_sort(int *p,int n); //函数声明
int a[10],i;
double c=3.6,*q=&c;
cout
main6-6.cpp
// main6-6.cpp 检验bo6-6.cpp的主程序
#define CHAR // 字符型
// #define INT // 整型(二者选一)
#ifdef CHAR
typedef char TElemType;
TElemType Nil=' '; // 字符型以空格符为空
#define form "%c" // 输入输出的格式为%c
#
bo6-6.cpp
// bo6-6.cpp 二叉树的三叉链表存储(存储结构由c6-6.h定义)的基本操作(21个)
#define ClearBiTree DestroyBiTree // 清空二叉树和销毁二叉树的操作一样
void InitBiTree(BiPTree &T)
{ // 操作结果:构造空二叉树T
T=NULL;
}
void DestroyBiTree(BiPTr
c6-6.h
// c6-6.h 二叉树的三叉链表存储表示
typedef struct BiTPNode
{
TElemType data;
BiTPNode *parent,*lchild,*rchild; // 双亲、左右孩子指针
}BiTPNode,*BiPTree;