Software Listing: Array

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.

  • Platform: Matlab, Scripts

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

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

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..

  • Platform: Matlab, Scripts

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

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..

  • Platform: Matlab, Scripts

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', ',' ).

  • Platform: Matlab, Scripts
  • Circ
  • License: Shareware
  • Rating

Matlab function to return a generalized circular/elliptical mask for a desired radius (or radii for an ellipse), array size, an center location..

  • Platform: Matlab, Scripts

It takes parts of incoming vector that above threshold and return cell array of parts..

  • Platform: Matlab, Scripts

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..

  • Platform: Matlab, Scripts

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

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

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.

  • Platform: Matlab, Scripts

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..

  • Platform: Matlab, Scripts

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

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..

  • Platform: Matlab, Scripts

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..

  • Platform: Matlab, Scripts

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

The array's end points are automatically excluded..

  • Platform: Matlab, Scripts

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..

  • Platform: PHP, Scripts

Page: 1 | 2 | 3 | 4 | 5 | Freeware

New Reviews


Funny Photo Maker

It happens a lot of times that you capture a photograph, it is good enough but you still want to play with it and improve it. There are lots of programs available for photo editing and some might say that you should use Adobe’s Photoshop. Yes, ...


Screencatch

There are numerous occasions when you need to take screenshot of anything on your computer. A screenshot is used for serving many purposes like tutoring, in eBooks, as electronic proofs etc.Taking screenshots is a relatively tedious task without ...


Screen Resolution Manager

If you share a computer at home or at work, some users may their own have personal preferences regarding the screen resolution that your monitor or projector is set up, and the colors that are displayed. This could be because of bad eye sight, ...


Alex Gordon Game

Alex Gordon game (or simply Alex Gordon) is a free ware game which appears platformer game, which is supposedly in the same vein as games such as sonic or Mario. What the game actually turns out to be, is an adventure game (with a  few elements ...


Ultrasurf

There are many cases where you need to access a website which is otherwise blocked by your ISP. You need to use a proxy but a using free proxy that is never easy and convincing. Also, whenever you want to hide your identity online, you need to use ...


FinalFortress

Final fortress is a free downloadable demo for the full game final fortress. Final fortress is  fixed location shooter mixed with RPG elements, which isn't a completely unique concept, but is done in a fairly unique way, with your large ...


End Of Room

End of room is a free ware platformer game with a black and white retro feel to it, like the game shift, except where shift innovated on the concept of a puzzle platformer, end of room does the exact opposite. Firstly though, the premise. In end of ...


Jewel Quest 3 Game

Jewel quest (3) is a free ware downloadable game from Free Ride games, a game development studio with a fair number of high quality games on this website. Jewel quest isn't an exception to this rule. Jewel quest is essentially a clone of the ...


MarkdownPad

It is not really difficult to create basic webpages, having said that, if you don’t know about HTML, it can be a tedious task. HTML stands for Hypertext Markup Language which basically is used to create webpages. It is not a difficult language ...



New Downloads

Advanced SystemCare

Advanced SystemCare 11 is an
all-in-one yet easy-to-use PC
optimization software to
clean, optimize, speed up, and
...

Radmin VPN

Radmin VPN - is a free and
easy-to-use software product
to create virtual private
network (VPN). The program
allows users ...

TaskRun Time Planner

ToDo Calendar with Pomodoro
Timer and Fitness and Calorie
Tracker. Weekly Calendar
Planner will help you to work
smarter, ...

Excel Add-in for SQL Server

Devart Excel Add-in for SQL
Server allows you to use
powerful Excel capabilities
for processing and analysis of
data from ...

A VIP Project Management
Solution

Project and Document
Management tool for company or
team management. It allows
planning, scheduling, sharing
any ...

SyncBreeze Server

SyncBreeze is a powerful,
easy-to-use and fast file
synchronization server
allowing one to synchronize
directories, disks ...

Nutrigenic Helper

Nutrigenic Helper is a fully
integrated application
designed specifically for
dietitians, nutritionists, ...

Data Cleaner

Excel Data Cleaner is an
essential MS Excel Add-In. You
can clean your tedious data in
excel easily by using its
commands ...

Adguard for Android

web filter, adblocker,
browsing security, phishing
protection, pop-ups and ads
blocking app



Related Searches

Array C Declare
Array J Declare
Array Asp
Basic Vis Array
Array Detecting
Bmp C Array
Video Graphics Array Compressor
Video Graphics Array
One Dimensional Array
Led Array
Led Array Source Code
Bit Array