-
MT CS demo
多任务压缩感知算法的相关代码。代码良好,可以运行。(Multitasking compressed sensing algorithm related code)
- 2015-06-09 09:03:26下载
- 积分:1
-
freescal_imx5x_gyrosensor_driver_r13_code
freescal_imx5x_gyrosensor_driver_r13_code
Porting_Guide_Drv_v1.0
Release_Notes_GyroSensor_Drv_04Apr2011
device frameworks hardware kernel_imx
frees cal imx 目前不支持gyroscope sensor 需要补充完善
- 2023-07-29 15:10:03下载
- 积分:1
-
Image-Compression
图像压缩算法的各种算法,用VC++实现,直接可以编译运行(Image compression algorithms algorithms, using VC++ implementation can be compiled to run directly)
- 2010-07-21 17:58:56下载
- 积分:1
-
CC1101,CC1100驱动
TICC1101 433射频 ,驱动与接口 主单片机为STM8S103F2其SPI接口为PC4, PC5, PC6 ,PC7
- 2023-04-08 12:50:04下载
- 积分:1
-
图解C#源码
本资源为图解C#一书的源码,可以作为练习使用。有需要的可以下载来看看。
代码非常完整。
- 2023-06-04 08:30:04下载
- 积分:1
-
terrain
演示地形绘制与漫游,取自OGRE例子,地形管理器会自动应用八叉树分割来管理地形。(Demo terrain rendering and roaming, from OGRE example, terrain Manager automatically applied octree division to manage the terrain.)
- 2013-05-27 23:51:46下载
- 积分:1
-
PXA255的Linux实时系统设计
说明: LINUX 系统 编程 教材,感兴趣的朋友可以看一看(Linux system programming)
- 2019-01-30 18:46:59下载
- 积分:1
-
运筹学动态规划问题
#include
#include
#include
using namespace std;
int x[4],s[4]; //x[k] 表示给第k个营业区增设的销售店 范围1-4
//s[k] 示给第k个营业区到3个营业区增设的销售店
int f[4][7],p[4][5];
//p[i][j] 给第i个营业区增加j个
//f[i][j] 给第i至第3个营业区增加j个
int max_value = 0;
void caclF() {
//计算出f[]
for(int k=2;k>=1;k--){
f[k][s[k]] = p[k][x[k]]+f[k+1][s[k+1]];
}
}
void caclS() {
//计算出s[]
for(int i=2;i
- 2022-05-12 10:58:38下载
- 积分:1
-
boost_19937_wrapper
A useful wrapper over the boost Mersenne Twister random number generator. It is implemented as a singleton such that the same instance can be used throughout a code by requesting the singleton instance. It also can return the host rng for boost functions that requires it. A unary function is also provided for use with std::random_shuffle for example.
- 2014-09-05 02:13:29下载
- 积分:1
-
OutSort
常见的外部管理系统,文章写了一些常见的外部排序的算法及实现(Common external management system, the article written some of the common external sorting algorithm and implementation)
- 2011-06-24 22:41:44下载
- 积分:1