搜索资源列表
SPIHT(Matlab).zip
- % Matlab implementation of SPIHT (without Arithmatic coding stage) % % By Jing Tian, scuteejtian@hotmail.com fprintf('----------- Welcome to SPIHT Matlab Demo! ----------------\n'); fprintf('----------- Load
shellsort111
- 附有本人超级详细解释(看不懂的面壁十天!) 一、 实际问题: 希尔排序(Shell Sort)是插入排序的一种。因D.L.Shell于1959年提出而得名。它又称“缩小增量分类法”,在时间效率上比插入、比较、冒泡等排序算法有了较大改进。能对无序序列按一定规律进行排序。 二、数学模型: 先取一个小于n的整数d1作为第一个增量,把文件的全部记录分成d1个组。所有距离为dl的倍数的记录放在同一个组中。先在各组内进行直接插人排序;然后,取第二个增量d2<d1重复上述的分组和
wave_matlab2006
- %WAVETEST Example Matlab scr ipt for WAVELET, using NINO3 SST dataset % % See \"http://paos.colorado.edu/research/wavelets/\" % Written January 1998 by C. Torrence % % Modified Oct 1999, changed Global Wavelet Spectrum (GWS) to be sideways,
a
- 快速排序法 //基本的思想:通过一趟排序将待排的记录分割成独立的两部分, //其中前一部分的 记录的关键字均比另一部分记录的关键字小, //再分别对两组记录进行递归分割,达到排序的目的 //平均时间复杂度为 O(log2(n
Y_TFun_Tournament
- 二叉树,堆排序模板,时间复杂度:为O(N*Log2(N))。空间复杂度: 2*N-1(个结点)
高级计算器 V1.0
- 系统支持的数学函数:PI ! ^ % SQR SQRT INT/TRUNC ROUND ABS FRAC SIN COS TAN ARCSIN ARCCOS ARCTAN LN LOG2 LOG10PI:圆周率。Exp!:计算Exp(表达式)的介乘。Exp1^Exp2:计算Exp1的Exp2次方。Exp1%Exp2:计算Exp1除以Exp2后的余数。Sqr(Exp):计算Exp的平方。Sqrt(Exp):计算Exp的平方根。Int(Exp)/Trunc(Exp):把Exp截断取整。Round(E
用bandelet进行图像分割的matlab代码
- A Matlab Tour of Second Generation Bandelets 附有每部分代码的说明 function x = perform haar transform(x, dir); x = x(:); % to be sure we have a column vector J = floor( log2(length(x)) ); % number of scales if dir==1 % forward transform for j=1:J c = x(
log2
- boost-log,一个牛人为boost库写的C++的日志库。boost作为一个庞大的C++基础库,一直缺少日志模块,改代码填补了这个空白,目前还在审核阶段-boost-log, a cow artificially boost library of C++ Writing the log database. a huge boost as the C++ foundation libraries, has been the lack of log module, change the code
Android SQLite--小巧好用的SQLite GUI管理工具
- 非常好用的SQLiteSpy 1.8.16 免费正式版(内附有一做好的DB,大家可以马上看下效果)。网上看到的,整理了下,共享给大家! 希望有用! SQLiteSpy是一个快速和紧凑的图形用户界面的SQLite数据库管理软件。它可以读取sqlite3文件并执行SQL。图形用户界面使得它很容易分析和操纵sqlite3的数据库。 注意:SQLiteSpy是免费供个人和教育用途,SQLiteSpy主要特点: 1、数据库一览:树状显示所有的架构,包括表,列,索引和触发器在数据库中包含的
noise_let_Measurements
- 这是一个实值的Noiselet变换,压缩感知的图像应用中的的Noiselet观测矩阵 -1) This implementation uses exactly m*log2(m) additions/subtractions. 2) This is a real-valued variation of "dragon" noiselets. 3) This is symmetric and orthogonal. To invert, apply again and divide by
WinnerTree
- 常见的实现方法是使用两个数组, t[n-1]和e[n],数组e存放所有的参加排序的元素,在完全二叉树中是叶子结点,t[]存放 的是比赛的阶段性胜者的编号,再进行n趟比赛排序结束,时间复杂度是O(n*log2(n)), 其实我觉得也可以只通过一个数组A[2*n-1]也可以实现,只是标号的换算有点复杂而已. -Common implementation approach is to use two array, t [n-1] and e [n], the array storage
FastWalshHadamardTransform
- The function implement the 1D sequency(Walsh) ordered fast Walsh-Hadamard transform which can be used in signal processing, pattern recongnition and Genetic alogorithms. This algorithm uses a Cooley-Tukey type signal flow graph and is implemented
FastFourierTransformAlgorithm
- This program is open source code of fast Fourier transform in matlab. Where y is the input argument and p is the normalized size of the input. Let y = [1 2 3 4 ] x= length(y) m= log2(x) p= ceil(m) To call the function use ft2(y,p
BCS
- 压缩传感是一个从2006年左右开始兴起的研究领域,它关注于如何采样信号,也就是信号的采样方式或者压缩方式。通过设计一种特殊的采样方案,可以使得采样频率降低为信号的“信息率”,而不是传统的奈奎斯特采样率,于是,实际的采样率可以大大低于奈奎斯特频率,却只损失很少的信息量,依然保持了充足的信息量足以恢复出采样前的原始信号。这个研究思想挑战了奈奎斯特频率的理论极限,会对整个信号处理领域产生极其深远的影响,同时,信号处理的许多应用领域也会随之发生根本性的发展和变化。 -Compressive sens
log2
- 一个关于How to compute log2(n) efficiently的源代码,非常好!-One on How to compute log2 (n) efficiently source code, very good!
num2log
- this function converts number to its log2 equivalent
log2
- use this file to see the log statistics of your server
Bubble_S5
- The "binary search algorithm" is one of the quickest way for searching threw an array, the "linear search algorithm" makes "n" comparaisons for searching for an element inside a given array. The "binary search algorithm" only makes log2(n) comparaiso
sorting
- Assumptions There are p processors sorting n numbers. Each processor begins with n=p numbers stored in the array x All numbers are in the range 0 : : : M 1 When the sorting algorithm ends, each processors has a sorted list o
log2.c.tar
- C code to comupute the integer-based log2 of a number. It uses two methods and compare the results.