代码搜索结果
找到约 10,000 项符合
9 的代码
al9_9.c
/*案例代码文件名:AL9_9.C*/
/*程序功能:使用字符指针变量表示和引用字符串*/
main()
{ char *string="I love Beijing.";
printf("%s\n",string);
}
c9-9.cpp
#include
using namespace std;
class Box
{public:
Box(int=10,int=10,int=10);
int volume();
private:
int height;
int width;
int length;
};
Box
samp9_9.m
%Samp9_9
clf;h=fir1(30,0.2,boxcar(31)); %设计30阶截止频率为0.2的FIR滤波器
r=randn(16384,1); %产生白噪声随机向量
x=filter(h,1,r); %对随机向量滤波
psd(x,1024,10000,kaiser(512,5),0,0.95); %采用Kaiser窗进行功率谱估计
xlab
algo9-9.cpp
// algo9-9.cpp 检验bo9-7.cpp的程序
#include"c1.h"
#define NULLKEY 0 // 0为无记录标志
#define N 10 // 数据元素个数
typedef int KeyType; // 设关键字域为整型
struct ElemType // 数据元素类型
{
KeyType key;
int ord;
examp9_9.m
syms x y; f=x^2+x*y/3; P=int(int(f,x,0,1/2),y,0,1/2)
algo9-9.c
/* algo9-9.c 检验bo9-7.c的程序 */
#include"c1.h"
#define NULLKEY 0 /* 0为无记录标志 */
#define N 10 /* 数据元素个数 */
typedef int KeyType; /* 设关键字域为整型 */
typedef struct
{
KeyType key;
int ord;
prog9_9.java
public class Prog9_9
{
public static void main(String argv[])
{
MyObject obj = new MyObject(5);
System.out.println(obj);
}
}
prog9_9.java
public class Prog9_9
{
public static void main(String argv[])
{
MyObject obj = new MyObject(5);
System.out.println(obj);
}
}