Software Listing: Array
- Find myltiple numbers in array
- License: Shareware

multiFind serves a similar purpose as find but when looking for multiple elements in an array of numbers. It returns two arrays of numbers. Each row of the two arrays contains the pair of indexes in which the numbers were found in the two arrays Input: array: the array in which you want to find some numbers nums: the numbers you are looking for inside the array varargin: type: type refers to the type of the output. If it gets the value 'index', it returns just the pairs of indexes of the numbers in the two arrays 'array' and nums respectively. If it gets the value 'bin', it returns two binary arrays, with 1's where the elements were found in the two arrays.
- Publisher: Stratis Gavves
- Date: 10-06-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- contourcs: to obtain contourc output as a struct array
- License: Shareware

MATLAB CONTOURC returns a contour matrix that summarizes the contour lines. Although compact, it takes an extra step to decipher the matrix. CONTOURCS wraps CONTOURC function to return the content of the contour matrix as an easily accessible structure array. S = CONTOURCS(Z) returns a struct array with fields: S(n).Level - level of the n-th contour line S(n).Length - number of points for the n-th contour line S(n).X - X coordinate vector (S(n).Length samples) S(n).Y - Y coordinate vector (S(n).Length samples) CONTOURCS supports all the CONTOURC input argument forms..
- Publisher: Kesh Ikuma
- Date: 01-02-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Frequency Counter
- License: Shareware

A simple function that take an array [1,n] and return another array contains the element and the frequency of element for each element in the array [2,n]. Useful for data mining ..
- Publisher: Ibraheem
- Date: 01-04-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Write Cell Array of Structs into a VTK Structured Grid
- License: Shareware

Each cell of the input cell array must be a struct, possibly nested, and for each point of the input, three properties (or alternatively the cell array indices) are used as VTK coordinates. An arbitrary number of properties are used as values of these points. The resulting VTK file (which is in ascii encoding) can then be opened and viewed with VTK compatible applications, e.g. ParaView..
- Publisher: Daniel Hornung
- Date: 01-03-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Split nD-array into equal sized cells
- License: Shareware

MAT2TILES is basically a wrapper for mat2cell but with a more convenient interface when you are simply trying to decompose an N-dimensional array into equal-sized chunks. It takes the desired chunk-size as an input argument, whereas mat2cell does not. MAT2TILES also has some convenient shortcuts for when you only want to tile along particular dimensions (see below). USAGE: C=mat2tiles(X,D1,D2,D3,...,Dn) C=mat2tiles(X,[D1,D2,D3,...,Dn]) will produce a cell array C containing adjacent chunks of the array X, with each chunk of dimensions D1xD2xD3x...xDn. If a dimension Di does not divide evenly into size(X,i), then the chunks at the upper boundary of X along dimension i will be truncated.
- Publisher: Matt J
- Date: 17-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- array2string.zip
- License: Shareware

simple function that converts a cell array to a string. string=array2string(array) converts a cell array to an evaluable string as used for example by eval(...). cells may contain strings, matrices, function handles and cells containing the aforementioned classes and other cells..
- Publisher: Bastian Binder
- Date: 20-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- splitstring
- License: Shareware

Split a string into a cell array by specifying a delimiter. Empty entries can be excluded if specified. Space delimiter is assumed if none is specified. Ex: arr = splitstring( 'a,b,c,d', ',' ).
- Publisher: Ivar Eskerud Smith
- Date: 17-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Circ
- License: Shareware

Matlab function to return a generalized circular/elliptical mask for a desired radius (or radii for an ellipse), array size, an center location..
- Publisher: Christopher Wilcox
- Date: 03-03-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Threshold detector
- License: Shareware

It takes parts of incoming vector that above threshold and return cell array of parts..
- Publisher: Ilya Prokin
- Date: 09-06-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- multi linear algebra vibhor bhardwaj
- License: Shareware

Consider two arbitrary arrays ax and by and the array cz resulting from an arbitrary product. Array multiplication or a class of arrays called encoding and decoding arrays implemented in MATLAB..
- Publisher: Vibhor Bhardwaj
- Date: 21-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Reverse concatenation: separate a data array along a specified dimension.
- License: Shareware

INVERSE_CAT splits a given data array into sub-arrays along the specified dimension. [A B]=INVERSE_CAT(DIM,C) splits array C along dimension, DIM, returning sub-arrays A and B. Examples: M = [1 2 3; 4 5 6; 7 8 9]; C = cat(2,M,M) [A B] = inverse_cat(2,C) ... returns A=M and B=M [A B] = inverse_cat(1,rot90(C)) ... returns A=rot90(M) B=rot90(M) [A B] = inverse_cat(3,cat(3,M,M)) ... returns A=M and B=M ----- Note: There are certainly more efficient ways to separate concatenated data. Suggestions for improvement are much appreciated. *Thanks to Jan Simon for insightful comments..
- Publisher: DS
- Date: 07-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Display images in fullscreen mode
- License: Shareware

accepts filenames or an image data array (specification of a colormap is possible) as input. Use the function in the following way: fullscreen('filename','dateiname.png','screennumber',ScreenNumber); fullscreen('cdata',ImageDataArray,'screennumber',ScreenNumber); fullscreen('cdata',ImageDataArray,'map',ColorMap,'screennumber',ScreenNumber);.
- Publisher: Julian
- Date: 16-02-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Wildcard selection
- License: Shareware

WILDSEL - wild card selection from cell array of strings using a GUI. % It allows the use of wildcards '*' and '?' and displays only the matching % elements of the cell array. % The user selects the entry he/she wants and the index of this % element in the original array is returned. % The '*' wildcard stands for any number (including zero) of characters. % The '?' wildcard stands for a single character. % % Usage: % IDX = WILDSEL(ARRAY) returns the index, IDX, of the selected item in the % cell array of strings ARRAY. % % Example: % A = {'Hello world!'; 'Goodbye world!'; 'Goodbye everyone'}; % idx = wildsel(A); % % brings up the GUI.
- Publisher: Richard Stephens
- Date: 11-03-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- matrix2latex GUI
- License: Shareware

This function converts an MATLAB 2-dimensional array (matrix) which can be numerical or a cell array, into proper formated LaTeX code. This utility is actually the GUI representation of M.Koehler matrix2latex code..
- Publisher: Anastasios Zouzias
- Date: 11-04-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Recursive tesselation
- License: Shareware

This is the basic algorithm for building Bayer's dither array but does so with unlimited size such that: H=rcrsvtslltn(N) produces an NxN Bayer's dither array. Code requires N to be an even number. If it is odd, then N is incremented by 1 to make it an even number..
- Publisher: Daniel Lau
- Date: 19-03-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- zoom on 2d by doublicating
- License: Shareware

This will zoom the image (2D Array) by factor of 2, and this is done by doublicating each point on the X-axis, and then doublicating each point on the Y-axis..
- Publisher: Nayef Nustafa
- Date: 27-01-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Min/Max filter for Mathematics
- License: Freeware
- Price: 0.00

It can eprform the following multidimensional array filtering: running filters in 1D and 2D, filters for image processing applications (erosion/dilatation), 3D and more. The MEX engine uses an algorithms that requires no more than three comparisons per element and per dimension in all configurations..
- Publisher: Bruno Luong
- Date: 01-04-2013
- Size: 20 KB
- Platform: Matlab, Scripts
- EXPAND Script
- License: Freeware
- Price: 0.00

For an array A and a vector B, the function replicates each one's of A's elements by B. The results are tiled into an array in the same order as the elements of A, so that the result is size: size(A).*SZ. Therefore the number of elements of SZ must equal the number of dimensions of A. The result will have the same number of dimensions as does A. There is no restriction on the number of dimensions for input A..
- Publisher: Matt Fig
- Date: 12-03-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Fast Peak Locator
- License: Freeware
- Price: 0.00

The array's end points are automatically excluded..
- Publisher: George Zipfel
- Date: 05-02-2013
- Size: 10 KB
- Platform: Matlab, Scripts
- Fancy dates
- License: Freeware
- Price: 0.00

The Fancy dates module provides an array of fancy options for displaying node and comment dates. By default it overwrites the node submitted theme function (this can be turned off on the content type form). The output is a nicely formatted display of year, month and day. The format of these can be changed under admin/settings/date-time/fancy-dates if needed..
- Publisher: Richard Burford
- Date: 11-03-2013
- Size: 10 KB
- Platform: PHP, Scripts








