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

Dissolute Pair software
Filter: All | Freeware | Demo
 

Dissolute Pair

< 1 2 3 4 5 

Altitude in Km above sea level for a given pair of coordinates (lat,long) function alt_km=ITU_P1511(lat,long)computes altitude of a site at given lat,long coordinatesby means of bicubic interpolation using itu topo 0.5 degrees resolutionmatrix.refer to ITU-R Recommendation P 1511.INPUTSlat: latitude + = North, -=southlong: longitude, positive degrees East.Required...



Platforms: Matlab


Added: May 22, 2013 | Visits: 280

Shortest path (all pair shortest path) Outperforms other algorithms in speed and memory requirement especially for large dataset.%function [costs] = mdijkstra(A,C)%%A=square matrix (either adjacency or cost)%%if C=1 then A=adjacency matrix% where, element(i,j)=1 when vertex v is directly connected with j% else (i,j)=0%%if C=2 then...





Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): Shortest path (all pair shortest path) Download

Renko with variable box size for GBPJPY or GJ (Pound Yen) With this m-file, you can plot or create the matrix which is the Renko Chart of GBPJPY currency pair. Use a .CSV file with fields:(serial date) , (open) , (high) , (low) , (close) , (volume)e.g.40367 133.18 134.59 133.015 133.34 35899or734327 133.18 134.59 133.015 133.34 35899


Platforms: Matlab

License: Freeware Size: 10 KB Download (45): Renko with variable box size for GBPJPY or GJ (Pound Yen) Download

Added: July 25, 2013 | Visits: 359

McNemarextest This m-file performs the conditional as well as the Chi-squared corrected for discontinuity McNemar's exact test for two dependent (correlated) samples that can occur in matched-pair studies with a dichotomous (yes-no) response. Dependent samples can also occur when the same subject is measured...


Platforms: Matlab

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

Added: May 01, 2013 | Visits: 285

Image correspondences using cross-correlation Finding corresponding features in a pair of images is the basis of many optic flow, stereo vision and image registration algorithms. One straightforward approach to finding a match is to take a small patch of one image, compute its sliding cross-correlation with the other image, and find a peak....


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 757.76 KB Download (43): Image correspondences using cross-correlation Download

Added: April 07, 2013 | Visits: 354

Patch color selector This small tool selects colors for a number of patches so that no any neighboring pair of patches have the same color. The tool was motivated by representing clusters produced by k-means.http://www.mathworks.com/matlabcentral/fileexchange/19344It can also demonstrate the famous four color map...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (49): Patch color selector Download

Added: August 25, 2013 | Visits: 1.107

Erlang B and C probabilities This is a pair of routines forcomputing Erlang B and C probabilities used in queueingtheory and telecommunications.The routines use a numerically stable recurrence relation which works well for large numbers of servers. This revised version also includes a routine for computing Engset blocking...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (233): Erlang B and C probabilities Download

Pairwise distance between 2 group of vectors (multidimensional) % Find pair-wise SQUARE EUCLIDEAN distance% or 'Weighted square euclidean' distance% between each point in A and B% For 2 vector a, b% Euclidean distance= d = sum((a-b).^2)% Weighted version = d = sum(wts.*(a-b).^2)% ------------------------------% Input:% A= m_by_p, m points in p-dimension% B=...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): Pairwise distance between 2 group of vectors (multidimensional) Download

Added: May 29, 2013 | Visits: 274

Generalized outer product [O,O_MAT] = OUTER(FUN,VEC1,VEC2)Generalized outer product, like calculating VEC1 * VEC2' but instead of using multiplication to combine the elements of VEC1 and VEC2, the function provided by function pointer fun is called for each pair of elements and the results are stored in the N-by-M cell...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (38): Generalized outer product Download

Added: April 12, 2013 | Visits: 168

HOWCOMMON HOWCOMMON takes a pair of vectors and returns uniquely sampled domains with corresponding values for the range. Unlike functions such as INTERP, however, duplicate domain input values are accepted, and the appropriate type of output can be user specified.For example, suppose one had:x = [1 2 3 3...


Platforms: Matlab

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

Added: April 19, 2013 | Visits: 199

get_shortest_path_matrix Calculates the length of the shortest path between any pair of nodes in a networkCalculates the length of the shortest path between any pair of nodes in a network.Syntax: shortest_path_mtx = get_shortest_path_matrix(connectivity_mtx) shortest_path_mtx = get_shortest_path_matrix(connectivity_mtx,...


Platforms: Matlab

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

Added: March 23, 2013 | Visits: 479

ENVI file reader/writer (Sripts) %test script%clears workspaceclearvars;%generate a complex 3-D variableD=rand(2,3,4)+j*rand(2,3,4);%create basic ENVI header info about a Matlab variableinfo=enviinfo(D);%write the variable and the associated header info in a pair of binary/header ENVI filesenviwrite(D,info,'a.dat'); %implicit...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (50): ENVI file reader/writer (Sripts) Download

Added: May 24, 2013 | Visits: 250

Distance Matrix calculation This program calculates the Euclidean distances of every possible pair of points, whose coordinates are given as rows in a matrix. It is particularly useful for distance-based classifiers, due to its limited computational cost. The program can be easily adapted to calculate Manhattan distance or...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): Distance Matrix calculation Download

Added: June 15, 2013 | Visits: 178

setarg Set value for value/argument pair in varargin/cellstring.If the argument does not exist it will be appended, if it exists it will be given the new specified value.Ex:args={'option1',true,'option2',false};args = setarg(args,'option1',false);args = setarg(args,'option3',false);%args is now:%args =...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): setarg Download

Added: March 31, 2013 | Visits: 181

hasarg Check if a specific value/argument pair exists in varargin/cellstring.args= { 'option1', true, 'option2', [1 2 3] };%returns trueexists = hasarg( args, 'option1' );


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): hasarg Download

Added: August 06, 2013 | Visits: 311

Unscented Hellinger distance between GMMs The code calculates a metric between a pair of multivariate Gaussian Mixture Models.This is a demo code for the unscented Hellinger distance between a pair of Gaussian mixture models. The code follows the derivation of the multivariate unscented Hellinger distance introduced in [1]. Unlike the...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 30.72 KB Download (43): Unscented Hellinger distance between GMMs Download

Added: August 01, 2013 | Visits: 294

Villalta et al.'s colocalization algorithm This new algorithm automatically obtains the true colocalization in a pair of fluorescence confocal images.The algorithm was integrated in a graphical users interface (GUI_COLOC).The rationale of the algorithm has been submitted for publication.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 81.92 KB Download (46): Villalta et al.'s colocalization algorithm Download

Added: March 27, 2013 | Visits: 367

barwebpairs (pair bars within groups and between groups) Use 'barweb' function by Bolu Ajiboye (submitted to file exchange on Oct 1 2009) to generate a bar plot with error bars.Usage: barwebpairs(h, pairsBG, pairsWG)* h: handle returned by barweb* pairsBG: between groups pairs: 1 x n cell array (where n is number of subgroups), each cell contains p x 2...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): barwebpairs (pair bars within groups and between groups) Download

Added: June 29, 2013 | Visits: 490

Animals' Matching Animal's Matching is a pair matching game with funny animals' pictures and hilarious sound effects. With 3 levels of difficulty, this is a challenge for everybody. With this game, your kids will improve their mind while having fun.


Platforms: Mac

License: Commercial Cost: $1.99 USD Size: 3.5 MB Download (34): Animals' Matching Download

Added: August 16, 2013 | Visits: 430

Rane Series Equalizers What are the Rane Series Equalizers? The Rane Series Equalizers are a unique pair of software plug-ins for the Digidesign TDM, ICON or VENUE platform. They are incredibly smooth sounding and fully featured for the studio or live sound environment. The Rane Series Equalizers combine the...


Platforms: Mac

License: Shareware Cost: $0.00 USD Size: 12.7 MB Download (37): Rane Series Equalizers Download

< 1 2 3 4 5