搜索资源列表
hadoop-book
- hadoop权威指南第二版书中的示例程序源代码-the hadoop authoritative guide to the second edition of the book, sample program source code
Gaussianprocessr
- 高斯分布程序用于概率中的随机取值,其中第二次随机还用到了平均分布-Procedures for the probability of Gaussian distribution of random values, which were also used for the second time the average distribution
pca
- A second-order cone programming based solver for MATLAB
second
- It transposes the any NxN matrix with 4 processor by mpi.
MPI_Parallel_Programming
- 书中第一部分简单介绍了并行程序设计的基本知识;然后在第二部分介绍基本的MPI并行程序设计方法,它虽然基本,但是却非常重要,因为通过这部分介绍的功能,可以实现几乎所有的通信功能;第三部分是在第二部分的基础上,介绍高级、复杂的MPI并行程序设计,使用高级的MPI调用可以提高并行程序的通用性和移植性,对提高并行程序的开发效率、可读性以及并行程序的执行效率等都有好处;最后一部分介绍MPI的最新扩展MPI-2,着重对动态进程管理、远程存储访问和并行I/O进行了讲解。-The book first sect
119128684fastica
- 很好用的ICA算法,用于盲分离算法,MATLAB代码,-about ICA Using second-order statistics (different time-delay correlation matrix) of non-stationary and structural characteristics of the signal timing can roughly
jsshiqi
- 如何利用java定时器使一个变量做到一秒一变。例如变量x初值是1, 然后第一秒变成2,第二秒变成3,以此类推。-How to use java to do a second timer to make a change to a variable. For example, initial value of the variable x is 1, then seconds into the first 2 seconds into the second 3, and so on.
Oxford__Parallel-Scientific-Computation
- This book is for students and researchers who are interested in scientific computation. The book has a dual purpose: first, it is a textbook for a course on parallel scientific computation. Second, the book is a source of example parallel algorithms
cudastep2
- cuda学习第二步,很不错的入门资料,cuda是以后的大势所趋-the cuda learning a second step, a very good introductory information, cuda is the future trend
TestReadDXF
- 次程序是数据结构中的很多代码的整合,特别其中是对DXF文件的读写-The second program is the integration of data structures in a lot of code, in particular in which the read and write DXF files
excel
- 对excel文件数据的操作 运行程序后... 首先点击Creat File按钮创建标准EXCEL文件(非标准excel文件笨程序无法操作) 打开程序目录下的name.xls, excel文件下有3件工作簿分别为TestSheet1,TestSheet2,TestSheet3 //////////一定要注意任何数据不能只是数字!!!!! 将第一组数据复制到TestSheet1里"数据A1"列中 将第二组数据复制到TestShee
Hadoop-the-definitive-guide-v2
- Hadoop权威指南第二版,学习Hadoop不可缺少-Hadoop The Definitive Guide, Second Edition, learn the Hadoop indispensable! !
init
- UDF文件,指定球体内第二相体积分数为1-UDF file specified inside the sphere the second phase volume fraction 1
OMP_TEST
- OpenMV小程序,在vs2013中采用OMP编程实现读取一个文件中的数据,文件中数据的第一行为数据个数,第二行为实际数据,数据间以空格隔开。判断第二行的数据中有多少个水仙花数。判断过程利用MPI采用多个线程进行。-Using OMP program implemented in vs2013 read data in a file, the first acts of the number of data files in the data, and the second actual beh
volterra6
- 运用volterra级数来分析求解其二阶核,包括运用各种算法,比如脉冲激励法,最小二乘法-Use volterra series analysis to solve the second-order core, including the use of various algorithms, such as pulse excitation method, least square method, etc.
A
- 一维 问题,即激波管问题,是一个典型的一维可压缩无黏气体动力学问题,并有 解析解。对它采用二阶精度 两步差分格式进行数值求解。-A one-dimensional problem that the shock tube problem is a typical one-dimensional inviscid compressible gas dynamics, and analytical solutions. It uses a two-step second order accuracy
cudaMallocAndMemcpy
- 在主机和设备之间复制--从“cudaMallocAndMemcpy”模板开始。 第1部分:为设备上的指标 d_a 和 d_b 分配内存。 第2部分:将主机上的h_a复制到设备上的 d_a。 第3部分:将设备从 d_a复制到 d_b。 第4部分:将设备上的 d_b 复制回主机上的 h_a。 第5部分:在主机上释放 d_a 和 d_b。 额外部分:用cudaMallocHost代替malloc来分配h_a。(Copy between host and device -- start
reverseArray_multiblock
- 反向阵列(multiblock): 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_multiblock”模板开始 B:多个256线程块启动,要颠倒大小为N,N / 256块的数组 第1部分:计算要启动的块数 第2部分:实现内核reverseArrayBlock 请注意,现在您必须同时进行计算 块内的相反位置 反向偏移到块的开始(Reverse array