代码搜索结果

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

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"

examp7_7.m

t_final=100; x0=[0;0;1e-10]; [t,x]=ode45('lorenzeq',[0,t_final],x0);plot(t,x), figure; % 打开新图形窗口 plot3(x(:,1),x(:,2),x(:,3)); axis([10 42 -20 20 -20 25]); % 根据实际数值手动设置坐标系 comet3(x(:,1),x(:,2)

ex7_7.cpp

/* Code for exercise 7.7. | | "C++ Solutions--Companion to The C++ Programming Language, Third Edition" | by David Vandevoorde; Addison-Wesley 1998; ISBN 0-201-30965-3. | | Permission to use, co

chapter7-7.cpp

//文件名:CHAPTER7-7.cpp #include #include #if _MSC_VER > 1020 // if VC++ version is > 4.2 using namespace std; // std c++ libs implemented in std #endif int main( ) {

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"