The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa.
For example,
>> project.name = MyProject
>> project.id = 1234
>> project.param.a = 3.1415
>> project.param.b = 42
becomes with str=xml_format(project, off )
"<project>
<name>MyProject</name>
<id>1234</id>
<param>
<a>3.1415</a>
<b>42</b>
</param>
</project>"
On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
Laoen 加密器 V1.0,可對任意類型文件進(jìn)行加(解)密,操作十分簡便。文件加(解)密速度極快。是學(xué)習(xí)加密技術(shù)不可多得的入門范本。LaoenED V1.0 for DOS小巧精干,完全可以作為DOS擴(kuò)充的外部命令使用(拷貝至c:\windows\command or c:\dos)。
本次發(fā)布的Laoen加密器V1.0有2個版本(DOS/Windows):
版本 文件 大小 編譯平臺
1、LaoenED V1.0 for DOS LaoenED.com 10.5k Turbo C 2.0
2、LaoenED V1.0 for DOS LaoenED.exe 25k Turbo C 2.0
3、LaoenED V1.0 for Windows LaoenED.exe 240k Visual C++ 6.0
這兩個版本完全兼容,可以相互交替加(解)密。讓你充分體會C/C++的異同。本軟件包含密碼查看器LookPW.exe,需要者請直接與作者聯(lián)系(slq_07@sina.com/beetle@jt.yn ).
Laoen 加密器 (袖珍型) 1.0 版,為一純綠色免費軟件。您可以任意復(fù)制、傳播。謝謝使用! ~O~
The main purpose of this project is to add a new scheduling algorithm to GeekOS and to implement a simple synchronization primitive (semaphore). As you might have already noticed, GeekOS uses a simple priority based preemptive Round Robin algorithm. In this project, you will change this to a multilevel feedback scheduling. In addition, you will provide user programs with semaphores, a means to check the system s current time and a mechanism for passing command-line arguments
A simple smtp relay server. Which follows smtp protocol correctly. It receive an email. and relay it out to an email server specified by users.
Platform: unix, linux, windows.
compilation command: g++ smtpr.c -lsocket -lnsl -o smtpr
usage: smtpr <port number> (<relay server>)
Image Compression
A collection of simple routines for image compression using different techniques.
圖象壓縮的不同方法
BTCODE:
Image compression Using Block Truncation Coding.
PYRAMID:
Image compression based on Gaussian Pyramids.
DCTCOMPR:
Image compression based on Discrete Cosine Transform.
IMCOMPR:
Image compression based on Singular Value Decomposition.
The given codes can be also used in 2D noise suppression.
Notes:
The function "conv2fft" performs a 2D FFT-based convolution.
Type "help conv2fft" on Matlab command window for more informations.
The Radio Interface Layer is the name for an interface that was developed especially for the Pocket PC Phone Edition. It is meant to abstract the interface with a phone/modem device. To achieve this it is closely modelled after the GSM AT command interface. Unfortunately the API was not published officially by Microsoft. Instead more high level API s were published that should be sufficient for developers. Again, unfortunately they are not sufficient. For example the API for receiving notification of incoming SMS messages is arranged for exclusively for one application per type of SMS. Apparently this will be improved upon in Pocket PC 2003. Another area is the availablity of a true AT command modem interface to interact with the GSM modem directly, which is also absent.