This file contains a new and improved version of the Huffman coder, (June 29. 2001). The name is Huff06.m. There are also some additional files which are helpful when using Matlab for data compression: quantizer, different variants of run-length-encoding and end-of-block coding in Mat2Vec, and a program which do JPEG-like entropy coding. A complete compression example is shown in TestMat2Vec.m. This file is all you need for Huffman coding in MatLab.
這是06年4月剛剛完成的程序,從opencore.org下載而來。用vhdl語言描寫,以及matlab仿真,testbench,以及在xinlinx上的綜合。
The MDCT core is two dimensional discrete cosine transform implementation designed for use in compression systems like JPEG. Architecture is based on parallel distributed arithmetic with butterfly computation.
"More for C++" is a class library that provides some features that are usually common for object oriented programming languages like Java or Python, but not for C
a program that takes in three arguments: the first one represents the size of an array that will be
created the second one represents the maximum value that each of the array elements can have the third
one represents the position in the array that you would like to print the value of.
maven 2.0
The following instructions show how to install Maven 2:
1) Unpack the archive where you would like to store the binaries, eg:
tar zxvf maven-2.0.tar.gz
or
unzip maven-2.0.zip
2) A directory called "maven-2.0" will be created.
3) Add the bin directory to your PATH, eg:
export PATH=/usr/local/maven-2.0/bin:$PATH
or
set PATH="c:\program files\maven-2.0\bin" %PATH%
4) Make sure JAVA_HOME is set to the location of your JDK
5) Run "mvn --version" to verify that it is correctly installed.
This project attempts to implement a Database using B+Tree. The project has developed a DATABASE SYSTEM with lesser memory consumption. Its API includes simple SQL Statements and the output is displayed on the screen. Certain applications for which several features of existing databases like concurrency control, transaction management, security features are not enabled. B+Trees can be used as an index for factor access to the data. Help facility is provided to know the syntax of SQL Statements.
A complete set of bit banged, software driven I2C routines I created for any PIC device - and they work!! These functions are single master only functions, and are ideal for communicating with things like EEPROMs, LCD Drivers, ADC Converters etc
This text introduces the spirit and theory of hacking as well as the science behind it all it also provides some core techniques and tricks of hacking so you can think like a hacker, write your own hacks or thwart potential system attacks.
譯作:《黑客入侵的藝術》,也是從朋友的寶箱中搜來的,以前層大致瀏覽過,是難得一件的好資料。
JoSQL 1.5的源代碼。JoSQL(SQL for Java Objects)為Java開發者提供運用SQL語句來操作Java對象集的能力.利用JoSQL可以像操作數據庫中的數據一樣對任何Java對象集進行查詢,排序,分組。比如要查找所有的Html文件:SELECT * FROM java.io.File Where name $Like "%html"