-
DDR3走先得详细规则及注意事项,考虑的等长走线,数据线与地址线、控制线长度关系...
DDR3走先得详细规则及注意事项,考虑的等长走线,数据线与地址线、控制线长度关系-DDR3 take detailed rules and precautions come to consider the alignment of equal length, the data line and address lines, control lines the length of the relationship between
- 2022-02-24 15:29:18下载
- 积分:1
-
操作系统中的虚页调度算法
操作系统中的虚页调度算法-operating system as a virtual page Scheduling Algorithm
- 2022-03-02 09:27:55下载
- 积分:1
-
calculation of Newton interpolation algorithm to achieve vc
计算方法的牛顿前插值算法vc实现-calculation of Newton interpolation algorithm to achieve vc
- 2023-04-15 14:35:04下载
- 积分:1
-
可以作为有限元学习的编程实例,以更好地理解有限元理论,并为进一步使用大型有限元软件打下基础。本文所涉及的有限元基本理论请参考章本照先生编著的《流体力学中的有限元
可以作为有限元学习的编程实例,以更好地理解有限元理论,并为进一步使用大型有限元软件打下基础。本文所涉及的有限元基本理论请参考章本照先生编著的《流体力学中的有限元方法》PP.156-165。-FEM can be used as learning programming examples to better understand the finite element theory, and to further the use of large-scale finite element software lay the groundwork. This paper involved the theory of finite element please refer to the chapter as a sign that the President "hydrodynamics of the finite element method" PP. 156-165.
- 2023-06-29 15:00:03下载
- 积分:1
-
是《计算机常用数值计算算法与程序 C++版》一书的配套C++程序源代码文件,每个源程序文件的文件扩展名都使用.cpp形式。这些C++程序已经在微软公司Windo...
是《计算机常用数值计算算法与程序 C++版》一书的配套C++程序源代码文件,每个源程序文件的文件扩展名都使用.cpp形式。这些C++程序已经在微软公司Windows 平台下的Virsual C++ 6.0环境下通过-is "commonly used computer numerical algorithms and procedures C version," a book supporting the C source code file, the source files extensions are used. Cpp form.C Windows Virsual C 6.0
- 2022-07-04 21:58:06下载
- 积分:1
-
线性方程组的解法
线性方程组的解法: 矩阵分解与线性方程组直接方法
- 2022-03-18 13:42:41下载
- 积分:1
-
使用lm算法对二维圆数据进行拟和,其中test_circle用于生成测试数据 fit2dcircle用于拟和 document.doc对算法原理进行详细说明 程
使用lm算法对二维圆数据进行拟和,其中test_circle用于生成测试数据 fit2dcircle用于拟和 document.doc对算法原理进行详细说明 程序使用bcc5.60编译通过- Uses the lm algorithm to carry on for the two-dimensional round
data draws up with, test_circle uses in to produce test data
fit2dcircle to use in to draw up carries on the specify procedure with
document.doc to the algorithm principle to use the bcc5.60 translation
to pass
- 2023-07-05 23:00:03下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
vc preparation procedures calculated pi
vc编写 计算圆周率程序-vc preparation procedures calculated pi
- 2022-01-23 11:08:28下载
- 积分:1
-
操作系统之磁盘调度
资源描述
磁盘调度在多道程序设计的计算机系统中,各个进程可能会不断提出不同的对磁盘进行读/写操作的请求。由于有时候这些进程的发送请求的速度比磁盘响应的还要快,因此我们有必要为每个磁盘设备建立一个等待队列,输入等待序列,先后进行以下四种算法, 先来先服务算法(FCFS),最短寻道时间优先算法(SSTF),扫描算法(SCAN),循环扫描算法(CSCAN),并求得最短寻道时间。
- 2022-06-11 14:05:54下载
- 积分:1