基于FPGA的B超数据采集功能,根据输入图像的束同步与帧同步信号,采用中断控制进入FIFO的图像数据的读写操作!
上传时间: 2013-12-19
上传用户:waitingfy
b+tree 的插入和查询操作,代码比较简练,效率高。缺少删除操作。
上传时间: 2013-12-19
上传用户:lijinchuan
求解大规模非对称线性方程组AX=b的迭代方法
上传时间: 2017-02-12
上传用户:xiaohuanhuan
我们程序设计课上要求写的b+树的c++实现,可以进行插入查找删除等操作,代码简单,适合新手
上传时间: 2013-12-16
上传用户:gxrui1991
In term project, we will take the baseline JPEG codec in ARM-based platform system as an example to practice the design flow in SoC. We divide the project into three parts, and the goal of each part is described as follow. Part I: Design a baseline JPEG software codec in C/C++ and port it to ARM core,(ARM7TDMI, ARM720T, or ARM922T.) Part II: Make use of virtual prototype to integrate/verify the hardware and software. Part III: Verify your soft IP in target environment.
标签: ARM-based baseline platform project
上传时间: 2017-02-15
上传用户:363186
b树的实现,包括打开关闭节点,打开节点 关闭节点,打开所有节点,关闭所有节点, 打开子节点,显示当前节点的增加节点 增加多个节点,删除节点
标签: 树
上传时间: 2014-01-13
上传用户:silenthink
DSP2810的B口IO口作50MS的中断变化输出
上传时间: 2017-02-17
上传用户:ukuk
二叉树 数据结构 忘了是第几个实验 好像是第六个 用b树做的
上传时间: 2017-02-17
上传用户:dave520l
读者要在命令行下输入tcc -B d:\tc\source\pport.c,来编译 之后需要编译server.c和clint.c
标签: csourcepport server clint tcc
上传时间: 2017-02-18
上传用户:ZJX5201314
Instead of finding the longest common subsequence, let us try to determine the length of the LCS. Then tracking back to find the LCS. Consider a1a2…am and b1b2…bn. Case 1: am=bn. The LCS must contain am, we have to find the LCS of a1a2…am-1 and b1b2…bn-1. Case 2: am≠bn. Wehave to find the LCS of a1a2…am-1 and b1b2…bn, and a1a2…am and b b b b1b2…bn-1 Let A = a1 a2 … am and B = b1 b2 … bn Let Li j denote the length of the longest i,g g common subsequence of a1 a2 … ai and b1 b2 … bj. Li,j = Li-1,j-1 + 1 if ai=bj max{ L L } a≠b i-1,j, i,j-1 if ai≠j L0,0 = L0,j = Li,0 = 0 for 1≤i≤m, 1≤j≤n.
标签: the subsequence determine Instead
上传时间: 2013-12-17
上传用户:evil