搜索资源列表
MATLAB
- 卷积运算:取x(t)和h(t)的长度为nx,nh。平移量n=nh+nx-1,利用for和if语句实现倒序求和运算。外循环用一个for语句实现平移,通过在求和时取数组元素的顺序实现倒序求和
hw2
- 编程测试并行平台MPI层的带宽和延迟: 单向通信时间简单表示为:t=Latency+Message_Size/Bandwidth 利用该方程得到系统的带宽和延迟
Parallel_TSP
- 基于MPI并行技术,用遗传算法解决旅行商问题-MPI TSP GA
ListViewFilter_src
- This control is another extension to the now standard and widely used ListView control. I have included some of the more common features: shaded columns, column sorting (with data type), but the real addition is the FILTERBAR features of the header.
17
- An image is represented as a two-dimentional array of coefficients, each coefficient representing the brightness level in that point. When looking from a higher perspective, we can t differentiate between coefficients as more important ones, and less
MPI_HyperQuicksort
- MPI (message passing protocol) based quicksort. HyperQuicksort version (original proposed by C.J Quinn) Tested and Developed in H.U.T by MonteCristo
MPI_RegularSamplingQuickSort
- Regular Sampling Quick Sort (general quicksort) MPI based. Original Proposed by C.J.Quinn. Tested and developed by MPI teams in H.U.T (monteCristo)
MethodsForParallelSorting
- Clearly explainations and analysis of concurrent parallel methods for data sorting (MPI based) Created by MonteCristo (H.U.T)
CnC_tutorial
- Intel CnC 帮助文档, 在这个文档中,你可以找到英特尔CnC并行的使用方法,CnC比OpenMp最大的优势在于你并不需要十分了解它是怎么并行的,只要将你需要计算的数据放入cnc中,它会自动并行-Intel CnC help document. In this document, you can find how to use CnC, CnC is better than openMp because it doesn t matter if the programer is p
strech
- 去斜率(strech)参考信号与回波信号混频后得到中频输出信号S(t)=Aexp(j*2*pi*f0*t+phase) 其中f0与回波延时的关系为: f0=k*delay_t K为线性调频斜率,delay_t为回波延时 将s(t)采样,FFT变换即可得到目标距离与频谱的关系。 Strech 信号测距 输入混频后的中频信号(图一),经采样及FFT变换得到频谱(图二) 再根据频谱与距离的关系式R=Tcf/2B显示出距离(图三) -Go slope (strech
gld_gjt
- 灰色T型关联度分析代码,已经运用于各个行业-Gray the T correlation degree analysis code has been used in various industries
OpenSitemapGenerator_060_Setup-(1)
- A workaround I have seen many times (back in the old days, when I was young, and dinosaurs roamed the Earth and harddisks were 20MB) is to convert the comment line to a label by starting the line with a colon ( : ). COMMAND.COM skips labels it does
a149344612.tar
- 实现的是一个计算机的功能,不需要安装环境就可以直接运行-Implementation is a function of a computer, don t need to install the environment can be run directly
20140706110029452945
- 时空美凯龙我一下默默无闻fdhhsjjjxjn-I don t kown . I have no idea
BPOPenMP
- BP算法的多核并行研究,输入输出txt文件内容保密,不能上传,大家根据代码自己加数据很简单。环境vs2010,技术openmp-BP algorithm of multi-core parallel study, input and output TXT file content confidential, can t upload, according to the code and data is very simple. Openmp vs2010 environment, technol
mpi_wave
- mpi fortran wave equation solver code !cc MAIN is the main program for WAVE_MPI. !c !c Discussion: !c !c WAVE_MPI solves the wave equation in parallel using MPI. !c !c Discretize the equation for u(x,t): !c d^2 u/dt^2 - c^2 * d^2 u
GAlib-mpi-master
- Simulated Annealing attempts to mimic the process of annealing in slowly cooled metal. The atoms rearrange themselves into a near-optimal energy state despite the apparent improbability of this occuring. Simulated Annealing abstracts this with a kind
折半查找法
- 折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数a0~a4,要查找的数是X,其基本思想是: 设查找数据的范围下限为l=1,上限为h=5,求中点m=(l+h)/2,用X与中点元素am比较,若X等于am,即找到,停止查找;否则,若X大于am,替换下限l=m+1,到下半段继续查找;若X小于am,换上限h=m-1,到上半段继续查找;如此重复前面的过程直到找到或者l>h为止。如果l>h,说明没有此数,打印找不到信息,程序结束。(The method of bin
GB-T 5702-2003 光源显色性评价方法
- 光源显色评价标准文件,色温,显指计算参考。(the tools of spectrum data Calculating color temperature.)
罚函数
- 利用罚函数计算min X1^2+X2^2 s.t. 2X1-X2≤7 X1^2+3X2^2=2(Penalty function calculation)