代码搜索结果

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

例7-7.txt

Book Description 在例7-7中,XML文档的文本将被放在

例7-7.htm

Book Description 在例7-7中,XML文档的文本将被放在

plot_7_7.m

% make figure 7.7 Z2=zeros(4,491); load run2 tail=[0 5 8 66]; z=sum(real(E).^2,2); [y ind]=sort(z); newE=E(ind,:); for i=1:4, Z2(i,:)=sum((real(newE(1:400-tail(i),:)).^2))/(400-tail(i));

c7-7.cpp

#include #include #include using namespace std; struct S {int num; string name; char sex; char job; union {int grade; char position[10

c7-7.cpp

#include #include #include using namespace std; struct S {int num; string name; char sex; char job; union {int grade; char position[10

xt7-7.cpp

#include using namespace std; #define NULL 0 struct student {long num; float score; student *next; }; int n; void print(student *head) {student *p;

f7_7.m

%正常人心律信号 %fid=fopen('normalecg.txt','r'); %充血性心脏心律信号 fid=fopen('heartfailure.txt','r'); %心室纤维颤动心律信号 %fid=fopen('atrialfib.txt','r'); x=fscanf(fid,'%f %f %f',[300 3]); fclose(fid); %采样频率 fs=

algo7-7.cpp

// algo7-7.cpp 实现算法7.16的程序 #define MAX_NAME 5 // 顶点字符串的最大长度+1 #define MAX_INFO 20 // 相关信息字符串的最大长度+1 typedef int VRType; typedef char VertexType[MAX_NAME]; typedef char InfoType; #include"