Software Listing: Array Made
- Greedy algorithm for Set Cover problem
- License: Freeware
- Price: 0.00

This function contains the well known greedy algorithm for solving Set Cover problem (ChvdodAtal, 1979), with two small modifications: * In case of more than one possible choice at a certain step, the biggest set is chosen; * Once the solution is found, we check the selected sets to find a better cover solution, removing a set if is a subset of the union of the other set. If you use this code, please cite the article for which it was implemented: F. Gori, G. Folino, M.S.M. Jetten, E. Marchiori "MTR: Taxonomic annotation of short metagenomic reads using clustering at multiple taxonomic ranks", Bioinformatics 2010.
- Publisher: Fabio Gori
- Date: 19-02-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Webuzo for CMS Made Simple
- License: Shareware
- Price: 25

CMS Made Simple provides a fast and easy way to create a professional web site and manage its content, whether it's for a small business or a multinational corporation! CMS Made Simple provides a mechanism for the website administrator to create and manage pages, their layout, and their content. CMS Made Simple is unobtrusive. You can create a table based layout, or a fully validating XHTML/CSS layout..
- Publisher: Softaculous Ltd
- Date: 01-07-2011
- Size: 248799 KB
- Platform: Linux, Unix, Win2000, Win7 x32, Win7 x64, Windows Server, WinOther, WinVista, WinVista x64
- Wabbit
- License: Shareware

Wabbit is a raw PHP gallery-script with pagination, perfect for smaller galleries, where thumbs are already made. It's based on looping array keys, so there is definitely no need for databases or special configurations. Insert it to your website and that's it, your gallery is set!.
- Publisher: arnoldcistai.net
- Date: 19-01-2011
- Platform: PHP, Scripts
- 3D Array Factor of a 4x4 planar array antenna
- License: Freeware
- Price: 0.00

3D Array Factor of a 4x4 planar array antenna calculated using general formulas and then plotted in 3D format. "AB" shows the excitation amplitude of the elements and "AB_phase" shows their phases. Elements are placed on the x and y axis and element factor is ignored. The code can easily be extended to larger general arrays..
- Publisher: Hadi Aliakbarian
- Date: 05-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Antenna's Array Synthesis
- License: Freeware
- Price: 0.00

This is an old program (1.999) that I have written for understanding radiation patterns of antennas. Basically I was looking for the relationship between interference diagram (Fourier transform of ilumination, usually called Array Factor) and 3D radiation pattern of the Array. For that reason, it represents XY, XZ and YZ planes instead of H and E. On this version the visible space is not update. On final version (I don't find it), the visible space where delimitated between lines over the interference pattern, and you can see how it varies with distance between antennas and ilumination phase law.
- Publisher: Cesar Delgado Gonzalez
- Date: 01-05-2013
- Size: 225 KB
- Platform: Matlab, Scripts
- Convert Time Array to a Datenum Array
- License: Freeware
- Price: 0.00

UTC time (universal time convention) is used in ANSI-C standard for defining time. This is measured in seconds since 1970, at the Prime Meridian. The UTC2Datenum_array function takes a M x 1 array of UTC time values and converts it to a M x 1 array of Matlab serial Time values. This code is derived from the UTC2datenum function written by Abraham Cohn of Philips Medical Systems. This code does not convert UTC to local time.
- Publisher: Mark Evans
- Date: 13-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Routh Hurwitz array
- License: Freeware
- Price: 0.00

Given the coefficients of the characteristic polynomial the Routh-Hurwitz array is created and printed. Additionally, this method shows some results from the array relating to the stability of the system..
- Publisher: J. Sebastian Palacio
- Date: 13-06-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Normalize Array Row Wise
- License: Shareware

No error checking a very basic function easy to understand Given an array X of size [m,n] output is an array of size [m,n] the rows of the output array sum to 1.
- Publisher: Shivani Rao
- Date: 02-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Convert Struct to Cell Array With Column Headers
- License: Freeware
- Price: 0.00

Accepts a 1-dimensional struct array (in the format 1xn) and converts it into a cell array. The first row of the cell array has the struct's field names in each column; the data from each of those fields for each entry in the struct array appears in subsequent rows. The idea is to make it easy to prep data for writing to an Excel spreadsheet using xlswrite. Example: weather = 1x3 struct array with fields: temp rainfall >> wxcell = structToCellArrayWithHeaders ( weather ) wxcell = 'temp' 'rainfall' [ 68] [ 0.2000] [ 80] [ 0.4000] [ 72] [ 0].
- Publisher: Andrew Blackburn
- Date: 21-03-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Designing the array of antenna patterns
- License: Shareware

An array of antenna elements is a spatially extended collection of N similar radiators or elements,.
- Publisher: farshid azhir
- Date: 22-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Inversion every 2D slice for arbitrary Multi-dimension array.
- License: Shareware

Inverse every 2D matrix slice (the first two dimensions) for multi-dimensional array M: M(:,:,p,q,...) * X(:,:,p,q,...) = repmat(eye(m),[1,1,p,q,...]), where input M is a N-D array (m x m x [p x q x ...]), for all possible m=1,2,3,... and optional higher dimensions. Output X array has the same size as M..
- Publisher: Xiaodong
- Date: 12-05-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Cell Array to CSV-file [cell2csv.m]
- License: Shareware

This function writes a cell array into a CSV-file. It works with empty cells, numeric, char, string and logical cells. One array can contain all of them, but only one value per cell. CSV-files can then be read by Excel, so you don't need DDE or ActiveX..
- Publisher: Sylvain Fiedler
- Date: 01-05-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Galois Field Array to Exponential Array Conversion
- License: Shareware

This code converts a Galois Field array created using GF(2^m) for a given primitive polynomial into the 'exponential' notation, which you can use with gfrepcov() to binary if you wish. Uses the gf2dec() function internally. Example usage: >> genpoly = rsgenpoly(15,11) genpoly = GF(2^4) array. Primitive polynomial = D^4+D+1 (19 decimal) Array elements = 1 13 12 8 7 >> gf2exp(genpoly, 4, primpoly(4)) ans = 0 13 6 3 10 Showing this RS Polynomial is of form: X^4 + A^13*X^3 + A^6*X^2 + A^3*X + A^10, which is how you see it displayed in text books etc..
- Publisher: Colin
- Date: 01-03-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Extended array indexing
- License: Shareware

Given an array, it is possible to imagine a virtual array formed by padding the original array out in all directions. Valid subscripts for this virtual array range through all the negative and positive integers, without regard to the size of the original. This function implements this idea. The padding out can be done in many ways. The following are implemented: using a constant value; replicating the border elements of the original; tiling the virtual array with copies of the original; tiling the virtual array with copies that have been flipped so that there is mirror symmetry along the borders of every copy.
- Publisher: David Young
- Date: 07-06-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- PD100 Array Calculator
- License: Shareware

PD100 Array Calculator was created as a handy and sophisticated engineering software that can help designers find out which PD100 cabinet is right for their application.
PD100 Array Calculator is a software that can also be used to determine how many PD100 cabinets are needed, how to configure them, what DSP setting to set for each driver, and what the resulting coverage will be at any frequency.
.
- Publisher: JBL Incorporated
- Date:
- Platform: Windows 7, WinOther, WinVista
- Array Visualizer
- License: Shareware

Array Visualizer is a handy and reliable application designed to display arrays in 2D, 3D and 4D views.
The utility allows users to select the size of the arrays. These can also be imported from a txt file. You can also configure the cell dimensions.
.
- Publisher: Amir Liberman
- Date:
- Platform: WinOther
- Great Fortunes, and How They Were Made
- License: Shareware
- Price: 19.95

This is the story of the men and women whose toil and labor made it possible for America to become what it is today. It talks about the toil, philosophies and struggles of the pioneers in making this country a land without prejudice, discrimination and class distinctions. It glorifies the ingenuity of great Americans throughout history who contributed to America's prosperity and honor. Great Fortunes, and How They Were Made dissects the anatomy of success of a few wealthy and successful Americans in history This book will inspire you to persevere like what many of the characters went through to achieve triumph eventually.
- Publisher: goldenstarebooks.com
- Date:
- Size: 501 KB
- Platform: Win2000, Windows CE, Windows Server, WinOther
- Array Painter
- License: Freeware
- Price: 0.00

Array Painter is the easiest and fastest way to make 2D arrays ready for copy pasting into your own program..
- Publisher: arraypainter.com
- Date:
- Size: 10 KB
- Platform: Win2000, Windows 7, WinOther, WinServer, WinVista
- Chocolate and Cocoa Recipes and Home Made Candies
- License: Shareware
- Price: 19.95

Chocolate and Cocoa Recipes and Home Made Candy Recipes answer your perennial question what to give your guest during special occasions. Simple, quick to prepare and delightful recipes. For delicious and easy to prepare chocolate and cocoa-based candies and cookies, there is no book as explicit and as comprehensive in information as Chocolate and Cocoa Recipes and Home Made Candy Recipes. Now you can give your guests big surprises with simple ingredients like cocoa and nuts. Contains over a hundred of the best Cocoa and Chocolate Recipes! Book Excerpts: Cocoa and Chocolate Baron von Liebig, one of the best-known writers on dietetics, says: It (chocolate) is a perfect food, as wholesome as delicious, a beneficient restorer of exhausted power; but its quality must be good and it must be carefully prepared.
- Publisher: goldenstarebooks.com
- Date:
- Size: 522 KB
- Platform: Win2000, Windows Server, WinOther
- Bat Sounds
- License: Freeware
- Price: 0.00

Have you ever heard the sound that a bat make? This app includes an array of sonar sounds made by bats. These sounds are used by bats to identify objects through echolocation. If you'd like to hear these noises, just download this app and explore the soundboard. You can even set a bat sound as your ringtone!.
- Publisher: eBook Apps
- Date: 06-11-2014
- Size: 3993 KB
- Platform: Android 2.x, Android 3.x, Android 4.4, Android 4.x






