The first edition of this book ranks among the small (very small) number of books that I credit with significantly elevating my skills as a professional software devel-oper. Like the others, it was practical and easy to read, but loaded with important advice. Effective C++, Third Edition, continues that tradition. C++ is a very powerful programming language. If C gives you enough rope to hang yourself, C++ is a hard-ware Store with lots of helpful people ready to tie knots for you. Mastering the points discussed in this book will definitely increase your ability to effectively use C++ and reduce your stress level.
This manual describes how to run the Matlab® Artificial Immune Systems tutorial presentation developed by Leandro de Castro and Fernando Von Zuben. The program files can be downloaded from the following FTP address: ftp://ftp.dca.fee.unicamp.br/pub/docs/vonzuben/lnunes/demo.zip
The tour is self-guided and can be performed in any order.
To run the presentation, first uncompress the zipped archive and Store it in an appropriate directory. Run the Matlab® , enter the selected directory, and type “tutorial” in the prompt.
CBUF.LIB
OVERVIEW: The circular buffers here are standard rotating FIFO buffers.
THey are currently used by the RS232 serial library to Store
incoming and outgoing data, but they are general purpose.
SimpliciTI™ -1.0.3.exe for CC11xx and CC25xx
SimpliciTI is a simple low-power RF network protocol aimed at small (<256) RF networks. Such networks typically contain battery operated devices which require long battery life, low data rate and low duty cycle and have a limited number of nodes talking directly to each other or through an access point or range extenders. Access point and range extenders are not required but provide extra functionality such as Store and forward messages. With SimpliciTI the MCU resource requirements are minimal which results in the low system cost.
SimpliciTI™ -1.0.4.exe for CC2430
SimpliciTI is a simple low-power RF network protocol aimed at small (<256) RF networks. Such networks typically contain battery operated devices which require long battery life, low data rate and low duty cycle and have a limited number of nodes talking directly to each other or through an access point or range extenders. Access point and range extenders are not required but provide extra functionality such as Store and forward messages. With SimpliciTI the MCU resource requirements are minimal which results in the low system cost.
SQLite is a small, fast, embeddable database. What makes it popular is the combination of the database engine and interface into a single library as well as the ability to Store all the data in a single file. Its functionality lies between MySQL and PostgreSQL, however it is faster than both databases.
Last week I posted an article on a simple C++ template class, XYDataArray, I used in my system development tool. The main purpose of this template class is to Store and sort general data types. I needed to implement the same thing in Java, since the tool I developed has a compatible Java version. I checked the Java SDK documentation before writing my own code, and found that almost everything I needed is already there, like the C++ case.