Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.164.655 Times

Array Architects software
Filter: All | Freeware | Demo
 

Array Architects

< 1 2 3 4 5 > 
Added: August 11, 2013 | Visits: 505

Color filter array color reproduction using cycle-spinning This is a demo program of color filter array (CFA) image color reproduction. J. Tian, W. Yu and L. Ma, "Color filter array color reproduction using cycle-spinning," International Journal of Electronics and Communications, Vol. 64, No. 6, pp. 584-587, Jun. 2010.



Platforms: Matlab

License: Freeware Size: 1.09 MB Download (39): Color filter array color reproduction using cycle-spinning Download

Added: September 02, 2013 | Visits: 368

ASSIGN VARIABLE NAMES TO MULTIDIMENSIONAL ARRAY AND SAVE The script solves the problem of assigning a variable name that changes with each iteration, while saving the result using a for loop.It uses a multidimensional array as input and produces matrices as outputs (ASCII).





Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 1003.52 KB Download (39): ASSIGN VARIABLE NAMES TO MULTIDIMENSIONAL ARRAY AND SAVE Download

Added: June 22, 2013 | Visits: 295

Label connected components in 2-D array LABEL is a generalization of BWLABEL: BWLABEL works with 2-D binary images only, whereas LABEL works with 2-D arrays of any class. L = LABEL(I,N) returns a matrix L, of the same size as I, containing labels for the connected components in I. Two adjacent components (pixels), of respective indexes...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Label connected components in 2-D array Download

Added: April 27, 2013 | Visits: 273

Array sorting This Example will help you in getting the basics of programmatic as wellAs the various commands used in matlab, Use of Loops, Use of Conditionalstatements Etc...Here is the surprise, Matlab has an inbuilt function called 'sort' for sorting any array.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Array sorting Download

Added: April 30, 2013 | Visits: 432

Write a cell array to a text file This function enables you to directly write data from a cell array into a text file, which functions like FWRITE and FPRINTF do not.Usage:fwritecell(filename, format, data) writes cell array "data" to the file with name "filename" using the C language conversion specifications in argument...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (49): Write a cell array to a text file Download

Added: May 29, 2013 | Visits: 318

Plot a 3D array using patch USAGE===== This function enables a 3D array to be displayed using a patch surface mesh. To plot a 3D logical array, the function is called using the following syntax: >> hpat = PATCH_3Darray(gridINPUT,gridX,gridY,gridZ); Alternatively, a 3D numeric array can be plotted such that the colour of...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 92.16 KB Download (46): Plot a 3D array using patch Download

Added: July 28, 2013 | Visits: 332

Routh's array in symbolic way [M L] = routh_hurwitz(P,N)This function gives the Routh's array from a numerical or SYMBOLIC polynomial and includes two special cases: (1) the first element of the row is zero; (b) a row of zeros.P Numerical or symbolic array of coeficients. In the case of symbolic variables it is necesarry to...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): Routh's array in symbolic way Download

Added: March 23, 2013 | Visits: 232

Jury's array in symbolic way [M, L] = jury(P,N)This function gives the Jury's array from a numerical or SYMBOLIC polynomial and includes the two special cases: (1) the first element of the second row of a block is zero; (b) a row of zeros (when there are roots on unit circle or reciprocal roots like (r,1/r). The symbolic...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (47): Jury's array in symbolic way Download

Added: August 25, 2013 | Visits: 324

Class for character array Create a new type called STR with a character array inside, implemented as a structure. It was inspired in Visual Basic syntax. It was implemented several operators and functions overloads, but allows any character array function using "char" conversor function or ' transpose overload. It's...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (42): Class for character array Download

Added: August 25, 2013 | Visits: 372

Find myltiple numbers in 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 arraysInput:array: the array in which you want to find...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): Find myltiple numbers in array Download

Added: April 17, 2013 | Visits: 327

contourcs: to obtain contourc output as a struct array 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...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (45): contourcs: to obtain contourc output as a struct array Download

Added: July 01, 2013 | Visits: 254

Write Cell Array of Structs into a VTK Structured Grid 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...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): Write Cell Array of Structs into a VTK Structured Grid Download

Added: July 05, 2013 | Visits: 223

Split nD-array into equal sized cells 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...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (45): Split nD-array into equal sized cells Download

Reverse concatenation: separate a data array along a specified dimension. 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] =...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): Reverse concatenation: separate a data array along a specified dimension. Download

Added: September 10, 2013 | Visits: 488

UL to PHP array This class can be used to parse HTML lists to extract contained structure.It can take a string with well-formed HTML UL lists tags and extracted the contained list elements structure. It supports nested lists.The class returns an array of items elements.


Platforms: PHP

License: Freeware Size: 10 KB Download (42): UL to PHP array Download

Added: June 20, 2013 | Visits: 405

General purpose dynamic array - Judy Judy is a general purpose dynamic array implemented as a C callable library. Judy's speed and memory usage are typically better than other data storage models and improves with very large data sets.


Platforms: *nix

License: Freeware Size: 1.09 MB Download (43): General purpose dynamic array - Judy Download

Added: September 16, 2013 | Visits: 349

Array::Window Many applications require that a large set of results be broken down into a smaller set of 'windows', or 'pages' in web language. Array::Window is a Perl module that implements an algorithm specifically for dealing with these windows. It is very flexible and permissive, making adjustments to the...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (37): Array::Window Download

Added: September 15, 2013 | Visits: 311

array-info array-info is a tool to retrieve informations and logical drives status from several RAID controllers (currently Compaq IDA and CISS, and MD).


Platforms: *nix

License: Freeware Size: 30.72 KB Download (42): array-info Download

Released: June 02, 2023  |  Added: July 11, 2023 | Visits: 105

Byte Array to PDF C# The Byte Array to PDF Conversion Library offers a range of features to help developers customize the conversion process to meet their needs. It supports a variety of output options, including page size, orientation, margins, and more. Additionally, this library provides advanced features...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Shareware Cost: $749.00 USD Size: 232.87 MB Download (23): Byte Array to PDF C# Download

Released: November 01, 2023  |  Added: November 16, 2023 | Visits: 464

Create PDF from Byte Array iTextSharp iTextSharp, a popular PDF library for .NET, provides developers with a robust solution for creating PDFs from byte arrays. With its intuitive APIs and utilities, this library empowers developers to seamlessly generate PDFs, allowing for flexible customization and efficient handling of byte array...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Shareware Cost: $749.00 USD Size: 238.72 MB Download (54): Create PDF from Byte Array iTextSharp Download

< 1 2 3 4 5 >